Source file consistency.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
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
open Store_types
open Store_errors
let check_cementing_highwatermark ~cementing_highwatermark block_store =
let open Lwt_result_syntax in
let cemented_store = Block_store.cemented_block_store block_store in
let highest_cemented_level =
Cemented_block_store.get_highest_cemented_level cemented_store
in
match (highest_cemented_level, cementing_highwatermark) with
| Some highest_cemented_level, Some cementing_highwatermark ->
fail_unless
(Int32.equal highest_cemented_level cementing_highwatermark)
(Inconsistent_cementing_highwatermark
{highest_cemented_level; cementing_highwatermark})
| Some _, None ->
return_unit
| None, Some _ ->
return_unit
| None, None -> return_unit
let is_block_stored block_store ((hash, level), expected_metadata, block_name) =
let open Lwt_result_syntax in
let* o =
Block_store.read_block
~read_metadata:expected_metadata
block_store
(Block (hash, 0))
in
match o with
| None -> tzfail (Unexpected_missing_block {block_name; level; hash})
| Some _block ->
if expected_metadata then
let* o =
Block_store.read_block_metadata block_store (Block (hash, 0))
in
match o with
| None ->
tzfail (Unexpected_missing_block_metadata {block_name; level; hash})
| Some _ -> return_unit
else return_unit
let check_protocol_levels block_store ~savepoint ~current_head protocol_levels =
let open Lwt_result_syntax in
let* savepoint =
Block_store.read_block
~read_metadata:false
block_store
(Block (fst savepoint, 0))
in
let* current_head =
Block_store.read_block
~read_metadata:false
block_store
(Block (fst current_head, 0))
in
let savepoint = WithExceptions.Option.get ~loc:__LOC__ savepoint in
let current_head = WithExceptions.Option.get ~loc:__LOC__ current_head in
let savepoint_proto_level = Block_repr.proto_level savepoint in
let current_head_proto_level = Block_repr.proto_level current_head in
let available_proto_levels =
savepoint_proto_level -- current_head_proto_level
in
let* () =
List.iter_es
(fun protocol_level ->
match Protocol_levels.find protocol_level protocol_levels with
| None ->
tzfail (Unexpected_missing_protocol {protocol_level})
| Some _ -> return_unit)
available_proto_levels
in
return_unit
let check_invariant ~genesis ~caboose ~savepoint ~cementing_highwatermark
~checkpoint ~current_head =
let ( <= ) descr descr' = Compare.Int32.(snd descr <= snd descr') in
let invariant_holds =
genesis <= caboose && caboose <= savepoint && savepoint <= checkpoint
&& checkpoint <= current_head
&&
match cementing_highwatermark with
| Some ch -> Compare.Int32.(ch <= snd checkpoint)
| None -> true
in
fail_unless
invariant_holds
(Bad_ordering_invariant
{
genesis = snd genesis;
caboose = snd caboose;
savepoint = snd savepoint;
cementing_highwatermark;
checkpoint = snd checkpoint;
head = snd current_head;
})
let check_consistency chain_dir genesis =
let open Lwt_result_syntax in
let* genesis_data = Stored_data.load (Naming.genesis_block_file chain_dir) in
let*! genesis_block = Stored_data.get genesis_data in
let* () =
fail_unless
(Block_hash.equal (Block_repr.hash genesis_block) genesis.Genesis.block)
(Inconsistent_genesis
{expected = genesis.block; got = Block_repr.hash genesis_block})
in
let* _chain_config = Stored_data.load (Naming.chain_config_file chain_dir) in
let* caboose_data = Stored_data.load (Naming.caboose_file chain_dir) in
let*! caboose = Stored_data.get caboose_data in
let* savepoint_data = Stored_data.load (Naming.savepoint_file chain_dir) in
let*! savepoint = Stored_data.get savepoint_data in
let* checkpoint_data = Stored_data.load (Naming.checkpoint_file chain_dir) in
let*! checkpoint = Stored_data.get checkpoint_data in
let* current_head_data =
Stored_data.load (Naming.current_head_file chain_dir)
in
let*! current_head = Stored_data.get current_head_data in
let* protocol_levels_data =
Stored_data.load (Naming.protocol_levels_file chain_dir)
in
let* _invalid_blocks_data =
Stored_data.load (Naming.invalid_blocks_file chain_dir)
in
let* _forked_chains_data =
Stored_data.load (Naming.forked_chains_file chain_dir)
in
let* _target_data = Stored_data.load (Naming.target_file chain_dir) in
let* block_store = Block_store.load chain_dir ~genesis_block ~readonly:true in
Lwt.finalize
(fun () ->
let genesis_descr = Block_repr.descriptor genesis_block in
let expected_blocks =
[
(genesis_descr, false, "genesis");
(caboose, false, "caboose");
(savepoint, true, "savepoint");
(checkpoint, true, "checkpoint");
(current_head, true, "current_head");
]
in
let* () =
List.iter_es
(fun block -> is_block_stored block_store block)
expected_blocks
in
let* cementing_highwatermark_data =
Stored_data.load (Naming.cementing_highwatermark_file chain_dir)
in
let*! cementing_highwatermark =
Stored_data.get cementing_highwatermark_data
in
let* () =
check_cementing_highwatermark ~cementing_highwatermark block_store
in
let*! protocol_levels = Stored_data.get protocol_levels_data in
let* () =
check_protocol_levels
block_store
~savepoint
~current_head
protocol_levels
in
let* () =
check_invariant
~genesis:genesis_descr
~caboose
~savepoint
~cementing_highwatermark
~checkpoint
~current_head
in
return_unit)
(fun () -> Block_store.close block_store)
let fix_floating_stores chain_dir =
let open Lwt_result_syntax in
let store_kinds = [Floating_block_store.RO; RW; RW_TMP; RO_TMP] in
let*! existing_floating_stores, incomplete_floating_stores =
List.partition_s
(fun kind -> Floating_block_store.all_files_exists chain_dir kind)
store_kinds
in
let*! () =
List.iter_s
(fun kind ->
let dir_path =
Naming.floating_blocks_dir chain_dir kind |> Naming.dir_path
in
Lwt_utils_unix.remove_dir dir_path)
incomplete_floating_stores
in
let* () =
List.iter_es
(fun kind -> Floating_block_store.fix_integrity chain_dir kind)
existing_floating_stores
in
let*! () = Store_events.(emit fix_floating_stores ()) in
return_unit
let fix_head chain_dir block_store genesis_block =
let open Lwt_result_syntax in
let floating_stores = Block_store.floating_block_stores block_store in
let* blocks =
List.map_es
(Floating_block_store.fold_left_s
(fun last_max block ->
let block_fitness = Block_repr.fitness block in
let last_max_fitness = Block_repr.fitness last_max in
if Fitness.(block_fitness > last_max_fitness) then return block
else return last_max)
genesis_block)
floating_stores
in
let floating_head =
List.fold_left
(fun e1 e2 ->
if Fitness.(Block_repr.fitness e1 > Block_repr.fitness e2) then e1
else e2)
genesis_block
blocks
in
let cemented_block_store = Block_store.cemented_block_store block_store in
let* inferred_head =
match Cemented_block_store.cemented_blocks_files cemented_block_store with
| None -> return floating_head
| Some cemented_block_files ->
let cemented_block_files = Array.to_list cemented_block_files in
if
cemented_block_files <> []
&& Block_hash.equal
(Block_repr.hash genesis_block)
(Block_repr.hash floating_head)
then
let highest_cycle =
List.last_opt cemented_block_files
|> WithExceptions.Option.get ~loc:__LOC__
in
let highest_cemented_level =
highest_cycle.Cemented_block_store.end_level
in
let+ o =
Cemented_block_store.get_cemented_block_by_level
cemented_block_store
~read_metadata:true
highest_cemented_level
in
WithExceptions.Option.get ~loc:__LOC__ o
else return floating_head
in
let* () =
let* o =
Block_store.read_block_metadata
block_store
(Block_store.Block (Block_repr.hash floating_head, 0))
in
match o with
| None ->
tzfail
(Corrupted_store
(Inferred_head
(Block_repr.hash inferred_head, Block_repr.level inferred_head)))
| Some _ -> return_unit
in
let*! stored_head =
let*! r = Stored_data.load (Naming.current_head_file chain_dir) in
match r with
| Ok current_head_data ->
let*! d = Stored_data.get current_head_data in
Lwt.return_some d
| Error _ -> Lwt.return_none
in
let*! () =
Store_events.(
emit fix_head (stored_head, Block_repr.descriptor inferred_head))
in
return inferred_head
let lowest_cemented_block cemented_block_files =
match cemented_block_files with
| [] -> None
| {Cemented_block_store.start_level; _} :: _ -> Some start_level
let lowest_metadata_entry metadata_file =
let open Lwt_syntax in
let metadata_file_path = Naming.file_path metadata_file in
let* exists = Lwt_unix.file_exists metadata_file_path in
if exists then
let* in_file = Lwt_preemptive.detach Zip.open_in metadata_file_path in
Lwt.finalize
(fun () ->
let* entries = Lwt_preemptive.detach Zip.entries in_file in
match entries with
| [] ->
assert false
| entry :: entries ->
let lowest_entry =
List.fold_left
(fun lowest entry ->
let entry = entry.Zip.filename in
if Compare.Int.(int_of_string lowest <= int_of_string entry)
then lowest
else entry)
entry.Zip.filename
entries
in
return (Int32.of_string lowest_entry))
(fun () -> Lwt_preemptive.detach Zip.close_in in_file)
else
Lwt.fail_with
(Format.sprintf "cannot find metadata file %s" metadata_file_path)
let lowest_cemented_metadata cemented_dir =
let open Lwt_result_syntax in
let* metadata_files = Cemented_block_store.load_metadata_table cemented_dir in
match metadata_files with
| Some metadata_files ->
let*! m =
Seq_s.of_seq (Array.to_seq metadata_files)
|> Seq_s.S.find_map
(fun {Cemented_block_store.metadata_file; start_level; end_level}
->
let*! lowest_metadata_entry =
Option.catch_s (fun () -> lowest_metadata_entry metadata_file)
in
let*! () =
match lowest_metadata_entry with
| Some _ -> Lwt.return_unit
| None ->
Store_events.(
emit warning_missing_metadata (start_level, end_level))
in
Lwt.return lowest_metadata_entry)
in
return m
| None -> return_none
let read_block_at_level ~read_metadata block_store ~head:(head_hash, head_level)
level =
Block_store.read_block
~read_metadata
block_store
(Block_store.Block (head_hash, Int32.(to_int (sub head_level level))))
let read_block_metadata_at_level block_store ~head:(head_hash, head_level) level
=
Block_store.read_block_metadata
block_store
(Block_store.Block (head_hash, Int32.(to_int (sub head_level level))))
let lowest_head_predecessor_in_floating block_store ~head =
let open Lwt_result_syntax in
let cemented_block_store = Block_store.cemented_block_store block_store in
let highest_cemented_block =
Cemented_block_store.get_highest_cemented_level cemented_block_store
in
let* head_lpbl =
match Block_repr.metadata head with
| Some m -> return m.last_preserved_block_level
| None ->
tzfail
(Corrupted_store
(Inferred_head (Block_repr.hash head, Block_repr.level head)))
in
let start =
match highest_cemented_block with
| Some hcb -> max Int32.(succ hcb) head_lpbl
| None -> head_lpbl
in
let head_descr = Block_repr.descriptor head in
let head_level = Block_repr.level head in
let rec loop ((lb, lbwm) : Int32.t option * Int32.t option) block_level =
if Int32.equal block_level head_level then return (lb, lbwm)
else
let* block_opt =
read_block_at_level
~read_metadata:true
block_store
~head:head_descr
block_level
in
match block_opt with
| Some block -> (
let new_lb =
match lb with Some lb -> Some lb | None -> Some block_level
in
let metadata = Block_repr.metadata block in
match (metadata, lbwm) with
| Some _, None -> return (new_lb, Some block_level)
| Some _, Some _ -> assert false
| None, _ -> loop (new_lb, lbwm) Int32.(succ block_level))
| None -> loop (lb, lbwm) Int32.(succ block_level)
in
loop (None, None) start
let load_inferred_savepoint chain_dir block_store head savepoint_level =
let open Lwt_result_syntax in
let* block =
read_block_at_level
~read_metadata:false
block_store
~head:(Block_repr.descriptor head)
savepoint_level
in
match block with
| Some block ->
let inferred_savepoint =
(Block_repr.hash block, Block_repr.level block)
in
let*! savepoint_data =
Stored_data.load (Naming.savepoint_file chain_dir)
in
let savepoint_data = Option.of_result savepoint_data in
let*! stored_savepoint = Option.map_s Stored_data.get savepoint_data in
let*! () =
Store_events.(emit fix_savepoint (stored_savepoint, inferred_savepoint))
in
return inferred_savepoint
| None ->
tzfail (Corrupted_store Cannot_find_savepoint_candidate)
let load_inferred_caboose chain_dir block_store head caboose_level =
let open Lwt_result_syntax in
let* block =
read_block_at_level
~read_metadata:false
block_store
~head:(Block_repr.descriptor head)
caboose_level
in
match block with
| Some block ->
let inferred_caboose = (Block_repr.hash block, Block_repr.level block) in
let*! caboose_data = Stored_data.load (Naming.caboose_file chain_dir) in
let caboose_data = Option.of_result caboose_data in
let*! stored_caboose = Option.map_s Stored_data.get caboose_data in
let*! () =
Store_events.(emit fix_caboose (stored_caboose, inferred_caboose))
in
return inferred_caboose
| None -> tzfail (Corrupted_store Cannot_find_caboose_candidate)
let infer_savepoint_and_caboose chain_dir block_store ~head =
let open Lwt_result_syntax in
let cemented_dir = Naming.cemented_blocks_dir chain_dir in
let cemented_block_store = Block_store.cemented_block_store block_store in
let cemented_block_files =
match Cemented_block_store.cemented_blocks_files cemented_block_store with
| None -> []
| Some arr -> Array.to_list arr
in
let* cemented_savepoint_candidate = lowest_cemented_metadata cemented_dir in
let cemented_caboose_candidate = lowest_cemented_block cemented_block_files in
match (cemented_savepoint_candidate, cemented_caboose_candidate) with
| Some cemented_savepoint, Some cemented_caboose ->
let* _, lowest_floating_with_metadata =
lowest_head_predecessor_in_floating block_store ~head
in
let sp =
match lowest_floating_with_metadata with
| Some lowest_floating_with_metadata ->
if
Compare.Int32.(lowest_floating_with_metadata < cemented_savepoint)
then lowest_floating_with_metadata
else cemented_savepoint
| None -> cemented_savepoint
in
let cb =
if Compare.Int32.(cemented_caboose > sp) then sp else cemented_caboose
in
return (sp, cb)
| None, Some cemented_caboose ->
let* _, lowest_floating_with_metadata =
lowest_head_predecessor_in_floating block_store ~head
in
let* savepoint_level =
match lowest_floating_with_metadata with
| Some lvl -> return lvl
| None -> tzfail (Corrupted_store Cannot_find_floating_savepoint)
in
let caboose_level =
if Compare.Int32.(cemented_caboose > savepoint_level) then
savepoint_level
else cemented_caboose
in
return (savepoint_level, caboose_level)
| None, None ->
let* lowest_floating, lowest_floating_with_metadata =
lowest_head_predecessor_in_floating block_store ~head
in
let* savepoint_level =
match lowest_floating_with_metadata with
| Some lvl -> return lvl
| None -> tzfail (Corrupted_store Cannot_find_floating_savepoint)
in
let* caboose_level =
match lowest_floating with
| Some lvl -> return lvl
| None -> tzfail (Corrupted_store Cannot_find_floating_caboose)
in
return (savepoint_level, caboose_level)
| Some _, None ->
assert false
let load_genesis block_store genesis =
let open Lwt_result_syntax in
let* block =
Block_store.read_block
~read_metadata:true
block_store
(Block_store.Block (genesis.Genesis.block, 0))
in
match block with
| Some block -> return block
| None -> tzfail (Corrupted_store Missing_genesis)
let fix_savepoint_and_caboose ?history_mode chain_dir block_store head genesis =
let open Lwt_result_syntax in
match history_mode with
| Some History_mode.Archive ->
let* genesis_block = load_genesis block_store genesis in
let genesis_descr = Block_repr.descriptor genesis_block in
return (genesis_descr, genesis_descr)
| None | Some (Full _) | Some (Rolling _) ->
let* savepoint_level, caboose_level =
infer_savepoint_and_caboose chain_dir block_store ~head
in
let* savepoint =
load_inferred_savepoint chain_dir block_store head savepoint_level
in
let* caboose =
load_inferred_caboose chain_dir block_store head caboose_level
in
return (savepoint, caboose)
let fix_checkpoint chain_dir block_store ~head ~savepoint =
let open Lwt_result_syntax in
let head_hash, head_level = Block_repr.descriptor head in
let* inferred_checkpoint =
let* head_metadata =
read_block_metadata_at_level
block_store
~head:(head_hash, head_level)
head_level
in
match head_metadata with
| None -> return savepoint
| Some head_metadata -> (
let lpbl = Block_repr.last_preserved_block_level head_metadata in
let* block =
read_block_at_level
~read_metadata:false
block_store
~head:(Block_repr.descriptor head)
lpbl
in
match block with
| None -> return savepoint
| Some block ->
let block_level = Block_repr.level block in
let* metadata =
read_block_metadata_at_level
block_store
~head:(head_hash, head_level)
block_level
in
if Option.is_some metadata then return (Block_repr.descriptor block)
else return savepoint)
in
let*! stored_checkpoint =
let*! r = Stored_data.load (Naming.checkpoint_file chain_dir) in
match r with
| Ok checkpoint_data ->
let*! d = Stored_data.get checkpoint_data in
Lwt.return_some d
| Error _ -> Lwt.return_none
in
let* () =
Stored_data.write_file
(Naming.checkpoint_file chain_dir)
inferred_checkpoint
in
let*! () =
Store_events.(emit fix_checkpoint (stored_checkpoint, inferred_checkpoint))
in
return inferred_checkpoint
let check_block_protocol_hash block_store context_index ~expected block =
let open Lwt_result_syntax in
protect (fun () ->
let* resulting_context_hash_opt =
Block_store.resulting_context_hash
~fetch_expect_predecessor_context:(fun () ->
let* (module Protocol) = Registered_protocol.get_result expected in
return
(Protocol.expected_context_hash = Predecessor_resulting_context))
block_store
(Block (Block_repr.hash block, 0))
in
match resulting_context_hash_opt with
| Some ctxt_hash -> (
let*! ctxt = Context.checkout context_index ctxt_hash in
match ctxt with
| Some ctxt ->
let*! got = Context.get_protocol ctxt in
return Protocol_hash.(got = expected)
| None -> return_false)
| None -> return_false)
(** Look into the cemented store for the lowest block with an
associated proto level that is below the savepoint. *)
let find_activation_blocks_in_cemented block_store ~savepoint_level ~proto_level
=
let open Lwt_result_syntax in
let cemented_store = Block_store.cemented_block_store block_store in
let read_cemented_block_by_level level =
let* b_opt =
Cemented_block_store.get_cemented_block_by_level
cemented_store
~read_metadata:false
level
in
let* b =
match b_opt with
| Some b -> return b
| None ->
failwith
"find_activation_block_in_cemented: unexpected missing block in \
the cemented store"
in
return b
in
let* is_in_cemented =
match Cemented_block_store.get_highest_cemented_level cemented_store with
| None -> return_false
| Some level ->
if Compare.Int32.(savepoint_level > level) then return_false
else
let* b = read_cemented_block_by_level level in
return Compare.Int.(Block_repr.proto_level b >= proto_level)
in
if not is_in_cemented then return_none
else
let* cemented_cycles =
match Cemented_block_store.cemented_blocks_files cemented_store with
| None ->
failwith
"find_activation_block_in_cemented: no cycle in the cemented store \
but got a highest cemented level"
| Some cycles -> return cycles
in
let len = Array.length cemented_cycles in
let rec find_activation_cycle previous_cycle = function
| -1 ->
let* min_b =
read_cemented_block_by_level
previous_cycle.Cemented_block_store.start_level
in
if Compare.Int.(Block_repr.proto_level min_b <= proto_level) then
return previous_cycle
else
failwith
"find_activation_block_in_cemented: cannot find activation block \
for proto %d in cemented store"
proto_level
| n ->
let ({Cemented_block_store.start_level; end_level; _} as cycle) =
cemented_cycles.(n)
in
let min_level = Compare.Int32.(max start_level savepoint_level) in
let* min_b = read_cemented_block_by_level min_level in
let* max_b = read_cemented_block_by_level end_level in
let min_proto_level = Block_repr.proto_level min_b in
let max_proto_level = Block_repr.proto_level max_b in
if Compare.Int.(min_proto_level > proto_level) then
find_activation_cycle cycle (pred n)
else if Compare.Int.(max_proto_level < proto_level) then
return previous_cycle
else if
min_proto_level <= proto_level && proto_level <= max_proto_level
then
return cycle
else
assert false
in
let* cycle = find_activation_cycle cemented_cycles.(len - 1) (len - 1) in
let exception Found of Block_repr.block in
Lwt.catch
(fun () ->
let*! () =
Cemented_block_store.raw_iter_cemented_file
(fun block ->
if Compare.Int32.(Block_repr.level block < savepoint_level) then
Lwt.return_unit
else if Compare.Int.(Block_repr.proto_level block = proto_level)
then Lwt.fail (Found block)
else Lwt.return_unit)
cycle
in
failwith "find_activation_block_in_cemented: cannot read cemented cycle")
(function
| Found block ->
let* next_block =
read_cemented_block_by_level (Int32.succ (Block_repr.level block))
in
return_some (block, next_block)
| exn ->
tzfail
(Inconsistent_cemented_file
(Naming.file_path cycle.file, Printexc.to_string exn)))
let find_activation_blocks_in_floating block_store ~head ~savepoint_level
~proto_level =
let open Lwt_result_syntax in
let rec loop block_proto_level succ block =
if Compare.Int32.(Block_repr.level block <= savepoint_level) then
let* () =
fail_unless
(Block_repr.proto_level block = proto_level)
(Corrupted_store (Cannot_find_activation_block proto_level))
in
return (block, succ)
else
let* predecessor_opt =
Block_store.read_block
~read_metadata:false
block_store
(Block (Block_repr.hash block, 1))
in
let predecessor =
WithExceptions.Option.get ~loc:__LOC__ predecessor_opt
in
let predecessor_proto_level = Block_repr.proto_level predecessor in
if
Compare.Int.(
predecessor_proto_level < block_proto_level
&& block_proto_level = proto_level)
then
return (block, succ)
else
loop predecessor_proto_level block predecessor
in
loop (Block_repr.proto_level head) head head
let find_two_lowest_block_with_proto_level block_store ~head ~savepoint_level
proto_level =
let open Lwt_result_syntax in
let* activation_blocks =
find_activation_blocks_in_cemented block_store ~savepoint_level ~proto_level
in
match activation_blocks with
| Some b -> return b
| None ->
find_activation_blocks_in_floating
block_store
~head
~savepoint_level
~proto_level
let fix_protocol_levels chain_dir block_store context_index genesis
~savepoint:(savepoint_hash, _) ~head =
let open Lwt_result_syntax in
let*! (stored_protocol_levels :
Protocol_levels.protocol_info Protocol_levels.t) =
let*! r = Stored_data.load (Naming.protocol_levels_file chain_dir) in
match r with
| Error _ -> Lwt.return Protocol_levels.empty
| Ok v -> Stored_data.get v
in
let* savepoint_opt =
Block_store.read_block
~read_metadata:false
block_store
(Block (savepoint_hash, 0))
in
let savepoint = WithExceptions.Option.get ~loc:__LOC__ savepoint_opt in
let savepoint_proto_level = Block_repr.proto_level savepoint in
let head_proto_level = Block_repr.proto_level head in
let protocol_levels_geq_savepoint =
savepoint_proto_level -- head_proto_level
in
let* invalid_proto_levels =
List.fold_left_es
(fun invalid_protocol_levels proto_level ->
match Protocol_levels.find_opt proto_level stored_protocol_levels with
| None -> return (proto_level :: invalid_protocol_levels)
| Some proto_info -> (
let activation_block_level =
snd proto_info.Protocol_levels.activation_block
in
let level_to_read =
if
Compare.Int32.(
activation_block_level < Block_repr.level savepoint)
then (
assert (Compare.Int.(proto_level = savepoint_proto_level)) ;
Block_repr.level savepoint)
else activation_block_level
in
let* b_opt =
read_block_at_level
~read_metadata:false
block_store
~head:(Block_repr.descriptor head)
level_to_read
in
match b_opt with
| None ->
return (proto_level :: invalid_protocol_levels)
| Some b ->
let* protocol_matches =
check_block_protocol_hash
block_store
context_index
~expected:proto_info.protocol
b
in
if protocol_matches then return invalid_protocol_levels
else
return (proto_level :: invalid_protocol_levels)))
[]
protocol_levels_geq_savepoint
in
let*! () =
if List.compare_lengths [] invalid_proto_levels = 0 then
Store_events.(emit restore_protocols_table ())
else Lwt.return_unit
in
let correct_protocol_levels =
Protocol_levels.filter
(fun i _ -> not (List.mem ~equal:Int.equal i invalid_proto_levels))
stored_protocol_levels
in
let* fixed_protocol_levels =
List.fold_left_es
(fun fixed_protocol_levels invalid_proto_level ->
let* lowest, succ_lowest =
find_two_lowest_block_with_proto_level
block_store
~head
~savepoint_level:(Block_repr.level savepoint)
invalid_proto_level
in
let is_genesis = Block_repr.hash lowest = genesis.Genesis.block in
let* () =
fail_unless
(is_genesis
|| Compare.Int.(
Block_repr.proto_level lowest
= Block_repr.proto_level succ_lowest))
(Corrupted_store (Cannot_find_activation_block invalid_proto_level))
in
let*! protocol =
let*! ctxt =
if is_genesis then
Context.checkout_exn context_index (Block_repr.context lowest)
else
Context.checkout_exn
context_index
(Block_repr.context succ_lowest)
in
Context.get_protocol ctxt
in
let* (module Proto) = Registered_protocol.get_result protocol in
let*! () =
Store_events.(
emit restore_protocol_activation (invalid_proto_level, protocol))
in
let proto_info =
{
Protocol_levels.protocol;
activation_block = Block_repr.descriptor lowest;
expect_predecessor_context =
Proto.expected_context_hash = Predecessor_resulting_context;
}
in
return
(Protocol_levels.add
invalid_proto_level
proto_info
fixed_protocol_levels))
correct_protocol_levels
invalid_proto_levels
in
return fixed_protocol_levels
let fix_chain_state chain_dir block_store ~head ~cementing_highwatermark
~checkpoint ~savepoint:tmp_savepoint ~caboose:tmp_caboose ~forked_chains
~protocol_levels ~chain_config ~genesis ~genesis_context =
let open Lwt_result_syntax in
let* () =
Stored_data.write_file (Naming.chain_config_file chain_dir) chain_config
in
let* () =
Stored_data.write_file
(Naming.protocol_levels_file chain_dir)
protocol_levels
in
let genesis_block =
Block_repr.create_genesis_block ~genesis genesis_context
in
let* () =
Stored_data.write_file (Naming.genesis_block_file chain_dir) genesis_block
in
let* () = Stored_data.write_file (Naming.current_head_file chain_dir) head in
let* () =
Stored_data.write_file (Naming.checkpoint_file chain_dir) checkpoint
in
let* () =
Stored_data.write_file
(Naming.cementing_highwatermark_file chain_dir)
cementing_highwatermark
in
let* savepoint, caboose =
match chain_config.history_mode with
| History_mode.Archive ->
if snd tmp_savepoint = 0l && snd tmp_caboose = 0l then
return (tmp_savepoint, tmp_caboose)
else
let* genesis_block = load_genesis block_store genesis in
let genesis_descr = Block_repr.descriptor genesis_block in
return (genesis_descr, genesis_descr)
| Full _ | Rolling _ -> return (tmp_savepoint, tmp_caboose)
in
let* () =
Stored_data.write_file (Naming.savepoint_file chain_dir) savepoint
in
let* () = Stored_data.write_file (Naming.caboose_file chain_dir) caboose in
let* () =
Stored_data.write_file
(Naming.invalid_blocks_file chain_dir)
Block_hash.Map.empty
in
let* () =
Stored_data.write_file (Naming.forked_chains_file chain_dir) forked_chains
in
return_unit
let infer_history_mode chain_dir block_store genesis caboose savepoint =
let open Lwt_syntax in
let cemented_block_store = Block_store.cemented_block_store block_store in
let cemented_blocks_files =
match Cemented_block_store.cemented_blocks_files cemented_block_store with
| None -> []
| Some arr -> Array.to_list arr
in
let cemented_dir = Naming.cemented_blocks_dir chain_dir in
let cemented_metadata_dir =
Naming.cemented_blocks_metadata_dir cemented_dir
in
let cemented_metadata_dir_path = Naming.dir_path cemented_metadata_dir in
let* nb_cycles_metadata =
if Sys.file_exists cemented_metadata_dir_path then
Lwt_stream.fold
(fun e count -> match e with "." | ".." -> count | _ -> count + 1)
(Lwt_unix.files_of_directory cemented_metadata_dir_path)
0
else Lwt.return 0
in
let nb_cycles = List.length cemented_blocks_files in
let offset =
if
Compare.Int.(
nb_cycles_metadata = History_mode.default_additional_cycles.offset)
then None
else Some {History_mode.offset = nb_cycles_metadata}
in
let history_mode =
if not (Block_hash.equal (fst caboose) genesis.Genesis.block) then
History_mode.Rolling offset
else if
not (Block_hash.equal (fst savepoint) genesis.block)
then Full offset
else if
nb_cycles_metadata = nb_cycles
then Archive
else
Full offset
in
let* () = Store_events.(emit restore_inferred_history_mode history_mode) in
return_ok {history_mode; genesis; expiration = None}
let fix_chain_config ?history_mode chain_dir block_store genesis caboose
savepoint =
let open Lwt_syntax in
let* r = Stored_data.load (Naming.chain_config_file chain_dir) in
match r with
| Ok chain_config ->
let* d = Stored_data.get chain_config in
return_ok d
| Error _ -> (
match history_mode with
| Some history_mode ->
let* () = Store_events.(emit restore_history_mode history_mode) in
return_ok {history_mode; genesis; expiration = None}
| None ->
infer_history_mode chain_dir block_store genesis caboose savepoint)
let fix_cementing_highwatermark chain_dir block_store =
let open Lwt_syntax in
let cemented_block_store = Block_store.cemented_block_store block_store in
let inferred_cementing_highwatermark =
Cemented_block_store.get_highest_cemented_level cemented_block_store
in
let* stored_cementing_highwatermark =
let* r = Stored_data.load (Naming.cementing_highwatermark_file chain_dir) in
match r with
| Ok cementing_highwatermark_data ->
let* d = Stored_data.get cementing_highwatermark_data in
Lwt.return d
| Error _ -> Lwt.return_none
in
let* () =
Store_events.(
emit
fix_cementing_highwatermark
(stored_cementing_highwatermark, inferred_cementing_highwatermark))
in
Lwt.return inferred_cementing_highwatermark
let fix_consistency ?history_mode chain_dir context_index genesis =
let open Lwt_result_syntax in
let*! () = Store_events.(emit fix_store ()) in
let* genesis_data =
trace
(Corrupted_store Missing_genesis)
(Stored_data.load (Naming.genesis_block_file chain_dir))
in
let*! genesis_block = Stored_data.get genesis_data in
let* () = fix_floating_stores chain_dir in
let* block_store =
Block_store.load chain_dir ~genesis_block ~readonly:false
in
let* head = fix_head chain_dir block_store genesis_block in
let*! cementing_highwatermark =
fix_cementing_highwatermark chain_dir block_store
in
let* savepoint, caboose =
fix_savepoint_and_caboose chain_dir block_store head genesis
in
let* checkpoint = fix_checkpoint chain_dir block_store ~head ~savepoint in
let* chain_config =
fix_chain_config
?history_mode
chain_dir
block_store
genesis
caboose
savepoint
in
let* protocol_levels =
fix_protocol_levels
chain_dir
block_store
context_index
genesis
~savepoint
~head
in
let* () =
fix_chain_state
chain_dir
block_store
~head:(Block_repr.descriptor head)
~cementing_highwatermark
~checkpoint
~savepoint
~caboose
~forked_chains:Chain_id.Map.empty
~protocol_levels
~chain_config
~genesis
~genesis_context:(Block_repr.context genesis_block)
in
let*! () = Block_store.close block_store in
return_unit