-
Notifications
You must be signed in to change notification settings - Fork 688
/
Copy pathvalidation.py
269 lines (212 loc) · 8.58 KB
/
validation.py
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
import functools
from typing import (
Any,
Dict,
Iterable,
Sequence,
Tuple,
Type,
Union,
cast,
)
from eth_typing import (
Address,
Hash32,
)
from eth_utils import (
ValidationError,
is_list_like,
)
from eth_utils.toolz import (
dicttoolz,
functoolz,
itertoolz,
)
from eth._utils.headers import (
compute_gas_limit_bounds,
)
from eth.abc import (
VirtualMachineAPI,
)
from eth.constants import (
SECPK1_N,
UINT_64_MAX,
UINT_256_MAX,
)
from eth.typing import (
BytesOrView,
)
def validate_is_bytes(value: bytes, title: str = "Value", size: int = None) -> None:
# TODO: include the value itself in the error string
if not isinstance(value, bytes):
raise ValidationError(f"{title} must be a byte string. Got: {type(value)}")
if size is not None and len(value) != size:
raise ValidationError(f"{title} must be size `{size}`. Got size `{len(value)}`")
def validate_is_bytes_or_view(value: BytesOrView, title: str = "Value") -> None:
if isinstance(value, (bytes, memoryview)):
return
raise ValidationError(f"{title} must be bytes or memoryview. Got {type(value)}")
def validate_is_integer(value: Union[int, bool], title: str = "Value") -> None:
if not isinstance(value, int) or isinstance(value, bool):
raise ValidationError(f"{title} must be a an integer. Got: {type(value)}")
def validate_length(value: Sequence[Any], length: int, title: str = "Value") -> None:
if not len(value) == length:
raise ValidationError(
f"{title} must be of length {length}. Got {value} of length {len(value)}"
)
def validate_length_lte(
value: Sequence[Any], maximum_length: int, title: str = "Value"
) -> None:
if len(value) > maximum_length:
raise ValidationError(
f"{title} must be of length less than or equal to {maximum_length}. "
f"Got {value} of length {len(value)}"
)
def validate_gte(value: int, minimum: int, title: str = "Value") -> None:
if value < minimum:
raise ValidationError(
f"{title} {value} is not greater than or equal to {minimum}"
)
validate_is_integer(value)
def validate_gt(value: int, minimum: int, title: str = "Value") -> None:
if value <= minimum:
raise ValidationError(f"{title} {value} is not greater than {minimum}")
validate_is_integer(value, title=title)
def validate_lte(value: int, maximum: int, title: str = "Value") -> None:
if value > maximum:
raise ValidationError(f"{title} {value} is not less than or equal to {maximum}")
validate_is_integer(value, title=title)
def validate_lt(value: int, maximum: int, title: str = "Value") -> None:
if value >= maximum:
raise ValidationError(f"{title} {value} is not less than {maximum}")
validate_is_integer(value, title=title)
def validate_canonical_address(value: Address, title: str = "Value") -> None:
if not isinstance(value, bytes) or not len(value) == 20:
raise ValidationError(f"{title} {value!r} is not a valid canonical address")
def validate_multiple_of(value: int, multiple_of: int, title: str = "Value") -> None:
if not value % multiple_of == 0:
raise ValidationError(f"{title} {value} is not a multiple of {multiple_of}")
def validate_is_boolean(value: bool, title: str = "Value") -> None:
if not isinstance(value, bool):
raise ValidationError(f"{title} must be an boolean. Got type: {type(value)}")
def validate_word(value: Hash32, title: str = "Value") -> None:
if not isinstance(value, bytes):
raise ValidationError(
f"{title} is not a valid word. Must be of bytes type: Got: {type(value)}"
)
elif not len(value) == 32:
raise ValidationError(
f"{title} is not a valid word. Must be 32 bytes in length: "
f"Got: {len(value)}"
)
def validate_uint64(value: int, title: str = "Value") -> None:
if not isinstance(value, int) or isinstance(value, bool):
raise ValidationError(f"{title} must be an integer: Got: {type(value)}")
if value < 0:
raise ValidationError(f"{title} cannot be negative: Got: {value}")
if value > UINT_64_MAX:
raise ValidationError(f"{title} exceeds maximum uint64 size. Got: {value}")
def validate_uint256(value: int, title: str = "Value") -> None:
if not isinstance(value, int) or isinstance(value, bool):
raise ValidationError(f"{title} must be an integer: Got: {type(value)}")
if value < 0:
raise ValidationError(f"{title} cannot be negative: Got: {value}")
if value > UINT_256_MAX:
raise ValidationError(f"{title} exceeds maximum uint256 size. Got: {value}")
def validate_stack_int(value: int) -> None:
if 0 <= value <= UINT_256_MAX:
return
raise ValidationError(
"Invalid Stack Item: Must be a 256 bit integer. Got {value!r}"
)
def validate_stack_bytes(value: bytes) -> None:
if len(value) <= 32:
return
raise ValidationError(
"Invalid Stack Item: Must be either a length 32 byte string. Got {value!r}"
)
validate_lt_secpk1n = functools.partial(validate_lte, maximum=SECPK1_N - 1)
validate_lt_secpk1n2 = functools.partial(validate_lte, maximum=SECPK1_N // 2 - 1)
def validate_unique(values: Iterable[Any], title: str = "Value") -> None:
if not itertoolz.isdistinct(values):
duplicates = functoolz.pipe(
values,
itertoolz.frequencies, # get the frequencies
# filter to ones that occure > 1
functoolz.partial(dicttoolz.valfilter, lambda v: v > 1),
sorted, # sort them
tuple, # cast them to an immutiable form
)
raise ValidationError(
f"{title} does not contain unique items. Duplicates: "
f"{', '.join(str(value) for value in duplicates)}"
)
def validate_is_transaction_access_list(
access_list: Sequence[Sequence[Union[Address, Sequence[int]]]]
) -> None:
validate_is_list_like(access_list, "Transaction.access_list")
for entry in access_list:
validate_is_list_like(entry, "Transaction.access_list entry")
if len(entry) != 2:
raise ValidationError(
"Transaction.access_list entry does not have 2 values. "
"Needs address value and storage key list."
)
validate_canonical_address(
cast(Address, entry[0]), "Transaction.access_list entry address"
)
validate_is_list_like(entry[1], "Transaction.access_list entry storage keys")
for k in entry[1]:
validate_is_integer(k, "Transaction.access_list entry storage key")
def validate_is_list_like(
obj: Sequence[Any],
title: str = "Value",
) -> None:
if not is_list_like(obj):
raise ValidationError(f"{title} is not list like: {repr(obj)}")
def validate_block_number(block_number: int, title: str = "Block Number") -> None:
validate_is_integer(block_number, title)
validate_gte(block_number, 0, title)
def validate_vm_block_numbers(vm_block_numbers: Iterable[int]) -> None:
validate_unique(vm_block_numbers, title="Block Number set")
for block_number in vm_block_numbers:
validate_block_number(block_number)
def validate_vm_configuration(
vm_configuration: Tuple[Tuple[int, Type[VirtualMachineAPI]], ...],
) -> None:
validate_vm_block_numbers(
tuple(block_number for block_number, _ in vm_configuration)
)
def validate_gas_limit(gas_limit: int, parent_gas_limit: int) -> None:
low_bound, high_bound = compute_gas_limit_bounds(parent_gas_limit)
if gas_limit < low_bound:
raise ValidationError(
f"The gas limit {gas_limit} is too low. It must be at least {low_bound}"
)
elif gas_limit > high_bound:
raise ValidationError(
f"The gas limit {gas_limit} is too high. It must be at most {high_bound}"
)
ALLOWED_HEADER_FIELDS = {
"coinbase",
"difficulty",
"gas_limit",
"timestamp",
"extra_data",
"mix_hash",
"nonce",
"uncles_hash",
"transaction_root",
"receipt_root",
"withdrawals_root",
"parent_beacon_block_root",
}
def validate_header_params_for_configuration(header_params: Dict[str, Any]) -> None:
extra_fields = set(header_params.keys()).difference(ALLOWED_HEADER_FIELDS)
if extra_fields:
raise ValidationError(
"The `configure_header` method may only be used with the fields "
f"({', '.join(tuple(sorted(ALLOWED_HEADER_FIELDS)))}). "
f"The provided fields ({', '.join(tuple(sorted(extra_fields)))}) "
"are not supported"
)