Source file block_forge.ml
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
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
open Protocol
open Alpha_context
type unsigned_block = {
unsigned_block_header : Block_header.t;
operations : Tezos_base.Operation.t list list;
}
type simulation_kind =
| Filter of Operation_pool.Prioritized.t
| Apply of {
ordered_pool : Operation_pool.ordered_pool;
payload_hash : Block_payload_hash.t;
}
type simulation_mode = Local of Context.index | Node
let forge_faked_protocol_data ?(payload_hash = Block_payload_hash.zero)
~payload_round ~seed_nonce_hash ~liquidity_baking_toggle_vote () =
Block_header.
{
contents =
{
payload_hash;
payload_round;
seed_nonce_hash;
proof_of_work_nonce = Baking_pow.empty_proof_of_work_nonce;
liquidity_baking_toggle_vote;
};
signature = Tezos_crypto.Signature.V0.zero;
}
let convert_operation (op : packed_operation) : Tezos_base.Operation.t =
{
shell = op.shell;
proto =
Data_encoding.Binary.to_bytes_exn
Alpha_context.Operation.protocol_data_encoding
op.protocol_data;
}
let timestamp validation_result
operations_hash predecessor_block_metadata_hash
predecessor_ops_metadata_hash =
let {Tezos_protocol_environment.context; fitness; message; _} =
validation_result
in
let validation_passes = List.length Main.validation_passes in
(Context_ops.get_test_chain context >>= function
| Not_running -> return context
| Running {expiration; _} ->
if Time.Protocol.(expiration <= timestamp) then
Context_ops.add_test_chain context Not_running >>= fun context ->
return context
else return context
| Forking _ -> assert false)
>>=? fun context ->
(match predecessor_block_metadata_hash with
| Some predecessor_block_metadata_hash ->
Context_ops.add_predecessor_block_metadata_hash
context
predecessor_block_metadata_hash
| None -> Lwt.return context)
>>= fun context ->
(match predecessor_ops_metadata_hash with
| Some predecessor_ops_metadata_hash ->
Context_ops.add_predecessor_ops_metadata_hash
context
predecessor_ops_metadata_hash
| None -> Lwt.return context)
>>= fun context ->
let context = Context_ops.hash ~time:timestamp ?message context in
let =
Tezos_base.Block_header.
{
shell_header with
level = Int32.succ shell_header.level;
validation_passes;
operations_hash;
fitness;
context;
}
in
return header
let retain_live_operations_only ~live_blocks operation_pool =
Operation_pool.Prioritized.filter
(fun ({shell; _} : packed_operation) ->
Block_hash.Set.mem shell.branch live_blocks)
operation_pool
let forge (cctxt : #Protocol_client_context.full) ~chain_id ~pred_info
~timestamp ~liquidity_baking_toggle_vote ~user_activated_upgrades
fees_config ~seed_nonce_hash ~payload_round simulation_mode simulation_kind
constants =
let predecessor_block = (pred_info : Baking_state.block_info) in
let hard_gas_limit_per_block =
constants.Constants.Parametric.hard_gas_limit_per_block
in
let chain = `Hash chain_id in
let check_protocol_changed
~(validation_result : Tezos_protocol_environment.validation_result) =
Context_ops.get_protocol validation_result.context >>= fun next_protocol ->
let next_protocol =
match
Tezos_base.Block_header.get_forced_protocol_upgrade
~user_activated_upgrades
~level:(Int32.succ predecessor_block.shell.level)
with
| None -> next_protocol
| Some hash -> hash
in
return Protocol_hash.(Protocol.hash <> next_protocol)
in
let filter_via_node ~operation_pool =
let filtered_operations =
Operation_selection.filter_operations_without_simulation
fees_config
~hard_gas_limit_per_block
operation_pool
in
let faked_protocol_data =
forge_faked_protocol_data
~payload_round
~seed_nonce_hash
~liquidity_baking_toggle_vote
()
in
Node_rpc.preapply_block
cctxt
~chain
~head:predecessor_block.hash
~timestamp
~protocol_data:faked_protocol_data
filtered_operations
>>=? fun (, preapply_result) ->
let operations =
List.map (fun l -> List.map snd l.Preapply_result.applied) preapply_result
in
let payload_hash =
let operation_list_hash =
Stdlib.List.tl operations |> List.flatten
|> List.map Tezos_base.Operation.hash
|> Operation_list_hash.compute
in
Block_payload.hash
~predecessor:shell_header.predecessor
payload_round
operation_list_hash
in
return (shell_header, operations, payload_hash)
in
let filter_with_context ~context_index ~operation_pool =
let faked_protocol_data =
forge_faked_protocol_data
~payload_round
~seed_nonce_hash
~liquidity_baking_toggle_vote
()
in
Baking_simulator.begin_construction
~timestamp
~protocol_data:faked_protocol_data
context_index
predecessor_block
chain_id
>>=? fun incremental ->
Operation_selection.filter_operations_with_simulation
incremental
fees_config
~hard_gas_limit_per_block
operation_pool
>>=? fun {
Operation_selection.operations;
validation_result;
operations_hash;
_;
} ->
check_protocol_changed ~validation_result >>=? fun changed ->
if changed then
filter_via_node ~operation_pool
else
protect
~on_error:(fun _ -> return_none)
(fun () ->
Shell_services.Blocks.metadata_hash
cctxt
~block:(`Hash (predecessor_block.hash, 0))
~chain
()
>>=? fun pred_block_metadata_hash ->
return (Some pred_block_metadata_hash))
>>=? fun pred_block_metadata_hash ->
protect
~on_error:(fun _ -> return_none)
(fun () ->
Shell_services.Blocks.Operation_metadata_hashes.root
cctxt
~block:(`Hash (predecessor_block.hash, 0))
~chain
()
>>=? fun pred_op_metadata_hash -> return (Some pred_op_metadata_hash))
>>=? fun pred_op_metadata_hash ->
finalize_block_header
incremental.header
timestamp
validation_result
operations_hash
pred_block_metadata_hash
pred_op_metadata_hash
>>=? fun ->
let operations = List.map (List.map convert_operation) operations in
let payload_hash =
let operation_list_hash =
Stdlib.List.tl operations |> List.flatten
|> List.map Tezos_base.Operation.hash
|> Operation_list_hash.compute
in
Block_payload.hash
~predecessor:shell_header.predecessor
payload_round
operation_list_hash
in
return (shell_header, operations, payload_hash)
in
let apply_via_node ~ordered_pool ~payload_hash =
let operations = Operation_pool.ordered_to_list_list ordered_pool in
let faked_protocol_data =
forge_faked_protocol_data
~seed_nonce_hash
~liquidity_baking_toggle_vote
~payload_hash
~payload_round
()
in
Node_rpc.preapply_block
cctxt
~chain
~head:predecessor_block.hash
~timestamp
~protocol_data:faked_protocol_data
operations
>>=? fun (, _preapply_result) ->
let operations = List.map (List.map convert_operation) operations in
return (shell_header, operations, payload_hash)
in
let apply_with_context ~context_index ~ordered_pool ~payload_hash =
let faked_protocol_data =
forge_faked_protocol_data
~seed_nonce_hash
~liquidity_baking_toggle_vote
~payload_hash
~payload_round
()
in
Shell_services.Chain.chain_id cctxt ~chain () >>=? fun chain_id ->
Baking_simulator.begin_construction
~timestamp
~protocol_data:faked_protocol_data
context_index
predecessor_block
chain_id
>>=? fun incremental ->
Operation_selection.filter_consensus_operations_only
incremental
ordered_pool
>>=? fun (incremental, ordered_pool) ->
let operations = Operation_pool.ordered_to_list_list ordered_pool in
let operations_hash =
Operation_list_list_hash.compute
(List.map
(fun sl ->
Operation_list_hash.compute (List.map Operation.hash_packed sl))
operations)
in
let incremental =
{incremental with header = {incremental.header with operations_hash}}
in
Baking_simulator.finalize_construction incremental
>>=? fun (validation_result, _) ->
check_protocol_changed ~validation_result >>=? fun changed ->
if changed then
apply_via_node ~ordered_pool ~payload_hash
else
protect
~on_error:(fun _ -> return_none)
(fun () ->
Shell_services.Blocks.metadata_hash
cctxt
~block:(`Hash (predecessor_block.hash, 0))
~chain
()
>>=? fun pred_block_metadata_hash ->
return (Some pred_block_metadata_hash))
>>=? fun pred_block_metadata_hash ->
protect
~on_error:(fun _ -> return_none)
(fun () ->
Shell_services.Blocks.Operation_metadata_hashes.root
cctxt
~block:(`Hash (predecessor_block.hash, 0))
~chain
()
>>=? fun pred_op_metadata_hash -> return (Some pred_op_metadata_hash))
>>=? fun pred_op_metadata_hash ->
finalize_block_header
incremental.header
timestamp
validation_result
operations_hash
pred_block_metadata_hash
pred_op_metadata_hash
>>=? fun ->
let operations = List.map (List.map convert_operation) operations in
return (shell_header, operations, payload_hash)
in
let simulation_kind =
match simulation_kind with
| Filter operation_pool ->
let filtered_pool =
retain_live_operations_only
~live_blocks:pred_info.live_blocks
operation_pool
in
Filter filtered_pool
| Apply _ as x -> x
in
(match (simulation_mode, simulation_kind) with
| Baking_state.Node, Filter operation_pool -> filter_via_node ~operation_pool
| Node, Apply {ordered_pool; payload_hash} ->
apply_via_node ~ordered_pool ~payload_hash
| Local context_index, Filter operation_pool ->
filter_with_context ~context_index ~operation_pool
| Local context_index, Apply {ordered_pool; payload_hash} ->
apply_with_context ~context_index ~ordered_pool ~payload_hash)
>>=? fun (, operations, payload_hash) ->
Baking_pow.mine
~proof_of_work_threshold:constants.proof_of_work_threshold
shell_header
(fun proof_of_work_nonce ->
{
Block_header.payload_hash;
payload_round;
seed_nonce_hash;
proof_of_work_nonce;
liquidity_baking_toggle_vote;
})
>>=? fun contents ->
let =
{
Block_header.shell = shell_header;
protocol_data = {contents; signature = Tezos_crypto.Signature.V0.zero};
}
in
return {unsigned_block_header; operations}