Source file block_store.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
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
open Store_types
open Block_repr
open Store_errors
let default_block_cache_limit = 1_000
type merge_status = Not_running | Running | Merge_failed of tztrace
type status = Naming.block_store_status = Idle | Merging
type block_store = {
chain_dir : [`Chain_dir] Naming.directory;
readonly : bool;
genesis_block : Block_repr.t;
cemented_store : Cemented_block_store.t;
mutable ro_floating_block_stores : Floating_block_store.t list;
mutable rw_floating_block_store : Floating_block_store.t;
caboose : block_descriptor Stored_data.t;
savepoint : block_descriptor Stored_data.t;
status_data : status Stored_data.t;
block_cache : Block_repr.t Block_lru_cache.t;
mutable gc_callback : (Block_hash.t -> unit tzresult Lwt.t) option;
mutable split_callback : (unit -> unit tzresult Lwt.t) option;
merge_mutex : Lwt_mutex.t;
merge_scheduler : Lwt_idle_waiter.t;
mutable merging_thread : (int32 * unit tzresult Lwt.t) option;
}
type t = block_store
type key = Block of (Block_hash.t * int)
let status_encoding =
let open Data_encoding in
conv
(function Idle -> false | Merging -> true)
(function false -> Idle | true -> Merging)
Data_encoding.bool
let status_to_string = function Idle -> "idle" | Merging -> "merging"
let cemented_block_store {cemented_store; _} = cemented_store
let floating_block_stores {ro_floating_block_stores; rw_floating_block_store; _}
=
List.rev (rw_floating_block_store :: ro_floating_block_stores)
let savepoint {savepoint; _} = Stored_data.get savepoint
let caboose {caboose; _} = Stored_data.get caboose
let status {status_data; _} = Stored_data.get status_data
let write_savepoint {savepoint; _} v =
let open Lwt_result_syntax in
let* () = Stored_data.write savepoint v in
let*! () = Store_events.(emit set_savepoint v) in
Prometheus.Gauge.set
Store_metrics.metrics.savepoint_level
(Int32.to_float (snd v)) ;
return_unit
let write_caboose {caboose; _} v =
let open Lwt_result_syntax in
let* () = Stored_data.write caboose v in
let*! () = Store_events.(emit set_caboose v) in
Prometheus.Gauge.set
Store_metrics.metrics.caboose_level
(Int32.to_float (snd v)) ;
return_unit
let genesis_block {genesis_block; _} = genesis_block
let write_status {status_data; _} status = Stored_data.write status_data status
(** [global_predecessor_lookup chain_block_store hash pow_nth] retrieves
the 2^[pow_nth] predecessor's hash from the block with corresponding
[hash] by checking all stores iteratively. Returns [None] if the
predecessor is not found or if it is below genesis. *)
let global_predecessor_lookup block_store hash pow_nth =
let open Lwt_syntax in
let* o =
List.find_map_s
(fun floating_store ->
let* o = Floating_block_store.find_predecessors floating_store hash in
match o with
| None -> Lwt.return_none
| Some predecessors -> Lwt.return (List.nth_opt predecessors pow_nth))
(block_store.rw_floating_block_store
:: block_store.ro_floating_block_stores)
in
match o with
| Some hash -> Lwt.return_some hash
| None -> (
match
Cemented_block_store.get_cemented_block_level
block_store.cemented_store
hash
with
| None -> Lwt.return_none
| Some level ->
let pred_level =
max
(Block_repr.level block_store.genesis_block)
Int32.(sub level (shift_left 1l pow_nth))
in
Lwt.return
(Cemented_block_store.get_cemented_block_hash
block_store.cemented_store
pred_level))
(**
Takes a block_store and a block and returns the block's known
predecessors. The predecessors are distributed along the chain,
up to the genesis, at a distance from [b] that grows exponentially.
The store tabulates a function [p] from distances to block_ids such
that if [p(b,d)=b'] then [b'] is at distance 2^d from [b].
Example of how previous predecessors are used:
p(n,0) = n-1
p(n,1) = n-2 = p(n-1,0)
p(n,2) = n-4 = p(n-2,1)
p(n,3) = n-8 = p(n-4,2)
p(n,4) = n-16 = p(n-8,3)
...
The list might be trimmed down if not enough predecessors can be
found in the block_store.
*)
let compute_predecessors block_store block =
let open Lwt_syntax in
let rec loop predecessors_acc pred dist =
if dist = Floating_block_index.Block_info.max_predecessors then
Lwt.return predecessors_acc
else
let* o = global_predecessor_lookup block_store pred (dist - 1) in
match o with
| None -> Lwt.return predecessors_acc
| Some pred' -> loop (pred' :: predecessors_acc) pred' (dist + 1)
in
let predecessor = predecessor block in
if Block_hash.equal block.hash predecessor then
Lwt.return [block.hash]
else
let* rev_preds = loop [predecessor] predecessor 1 in
Lwt.return (List.rev rev_preds)
(** [get_hash block_store key] retrieves the block which is at
[distance] from the block with corresponding [hash] by every store
iteratively. *)
let get_hash block_store (Block (block_hash, offset)) =
let open Lwt_result_syntax in
let closest_power_two n =
if n < 0 then assert false
else
let rec loop cnt n = if n <= 1 then cnt else loop (cnt + 1) (n / 2) in
loop 0 n
in
Lwt_idle_waiter.task block_store.merge_scheduler (fun () ->
if offset = 0 then return_some block_hash
else if offset < 0 then tzfail (Wrong_predecessor (block_hash, offset))
else
match
Cemented_block_store.get_cemented_block_level
block_store.cemented_store
block_hash
with
| Some block_level ->
let target = Int32.(sub block_level (of_int offset)) in
return
(Cemented_block_store.get_cemented_block_hash
block_store.cemented_store
target)
| None ->
let rec loop block_hash offset =
if offset = 1 then
let*! pred =
global_predecessor_lookup block_store block_hash 0
in
return pred
else
let power = closest_power_two offset in
let power =
if power < Floating_block_index.Block_info.max_predecessors
then power
else
let power =
Floating_block_index.Block_info.max_predecessors - 1
in
power
in
let*! o =
global_predecessor_lookup block_store block_hash power
in
match o with
| None -> return_none
| Some pred ->
let rest = offset - (1 lsl power) in
if rest = 0 then return_some pred
else loop pred rest
in
loop block_hash offset)
let mem block_store key =
let open Lwt_result_syntax in
Lwt_idle_waiter.task block_store.merge_scheduler (fun () ->
let* o = get_hash block_store key in
match o with
| None -> return_false
| Some predecessor_hash
when Block_hash.equal block_store.genesis_block.hash predecessor_hash ->
return_true
| Some predecessor_hash ->
let*! is_known_in_floating =
List.exists_s
(fun store -> Floating_block_store.mem store predecessor_hash)
(block_store.rw_floating_block_store
:: block_store.ro_floating_block_stores)
in
return
(is_known_in_floating
|| Cemented_block_store.is_cemented
block_store.cemented_store
predecessor_hash))
let read_block block_store ~read_metadata key_kind =
let open Lwt_result_syntax in
Lwt_idle_waiter.task block_store.merge_scheduler (fun () ->
let* o = get_hash block_store key_kind in
match o with
| None -> return_none
| Some adjusted_hash ->
if Block_hash.equal block_store.genesis_block.hash adjusted_hash then
return_some block_store.genesis_block
else
let fetch_block adjusted_hash =
let*! o =
List.find_map_s
(fun store ->
Floating_block_store.read_block store adjusted_hash)
(block_store.rw_floating_block_store
:: block_store.ro_floating_block_stores)
in
match o with
| Some block -> Lwt.return_some block
| None -> (
let*! r =
Cemented_block_store.get_cemented_block_by_hash
~read_metadata
block_store.cemented_store
adjusted_hash
in
match r with
| Ok v -> Lwt.return v
| Error _ -> Lwt.return_none)
in
let*! block =
Block_lru_cache.bind_or_put
block_store.block_cache
adjusted_hash
fetch_block
Lwt.return
in
return block)
let read_block_metadata block_store key_kind =
let open Lwt_result_syntax in
Lwt_idle_waiter.task block_store.merge_scheduler (fun () ->
let* o = get_hash block_store key_kind in
match o with
| None -> return_none
| Some adjusted_hash -> (
if Block_hash.equal block_store.genesis_block.hash adjusted_hash then
return (Block_repr.metadata block_store.genesis_block)
else
let*! o =
List.find_map_s
(fun store ->
Floating_block_store.read_block store adjusted_hash)
(block_store.rw_floating_block_store
:: block_store.ro_floating_block_stores)
in
match o with
| Some block -> return block.metadata
| None -> (
match
Cemented_block_store.get_cemented_block_level
block_store.cemented_store
adjusted_hash
with
| None -> return_none
| Some level ->
Cemented_block_store.read_block_metadata
block_store.cemented_store
level)))
let resulting_context_hash block_store ~fetch_expect_predecessor_context key =
let open Lwt_result_syntax in
let ( let*? ) t k =
let* v_opt = t in
match v_opt with None -> return_none | Some v -> k v
in
let*? adjusted_hash = get_hash block_store key in
if Block_hash.equal block_store.genesis_block.hash adjusted_hash then
return_some (Block_repr.context block_store.genesis_block)
else
let*! resulting_context_opt =
Lwt_idle_waiter.task block_store.merge_scheduler (fun () ->
List.find_map_s
(fun store ->
Floating_block_store.find_resulting_context_hash
store
adjusted_hash)
(block_store.rw_floating_block_store
:: block_store.ro_floating_block_stores))
in
match resulting_context_opt with
| Some resulting_context_hash -> return_some resulting_context_hash
| None ->
let* expect_predecessor = fetch_expect_predecessor_context () in
Lwt_idle_waiter.task block_store.merge_scheduler (fun () ->
let cemented_store = block_store.cemented_store in
if expect_predecessor then
let*? block_level =
return
(Cemented_block_store.get_cemented_block_level
cemented_store
adjusted_hash)
in
let*? succ_block =
Cemented_block_store.get_cemented_block_by_level
cemented_store
~read_metadata:false
(Int32.succ block_level)
in
return_some (Block_repr.context succ_block)
else
let*? block =
Cemented_block_store.get_cemented_block_by_hash
cemented_store
~read_metadata:false
adjusted_hash
in
return_some (Block_repr.context block))
let store_block block_store block resulting_context_hash =
let open Lwt_result_syntax in
let* () = fail_when block_store.readonly Cannot_write_in_readonly in
Lwt_idle_waiter.task block_store.merge_scheduler (fun () ->
protect (fun () ->
let*! predecessors = compute_predecessors block_store block in
Block_lru_cache.put
block_store.block_cache
block.hash
(Lwt.return_some block) ;
Floating_block_store.append_block
~log_metrics:true
block_store.rw_floating_block_store
{predecessors; resulting_context_hash}
block))
let cement_blocks ?(check_consistency = true) ~write_metadata block_store
chunk_iterator ~cycle_range:(cycle_start, cycle_stop) =
let open Lwt_result_syntax in
let*! () =
Store_events.(emit start_cementing_blocks) (cycle_start, cycle_stop)
in
let {cemented_store; _} = block_store in
let* () =
Cemented_block_store.cement_blocks
~check_consistency
cemented_store
~write_metadata
chunk_iterator
in
let*! () = Store_events.(emit end_cementing_blocks) () in
return_unit
let try_retrieve_n_predecessors floating_stores block_hash n =
let open Lwt_syntax in
let rec loop acc current_hash n =
if n = 0 then return acc
else
let* o =
List.find_map_s
(fun floating_store ->
Floating_block_store.find_predecessors floating_store current_hash)
floating_stores
in
match o with
| None | Some [] ->
return acc
| Some (direct_predecessor_hash :: _ancestors) ->
loop (current_hash :: acc) direct_predecessor_hash (pred n)
in
loop [] block_hash n
let read_predecessor_block_by_level_opt block_store ?(read_metadata = false)
~head level =
read_block
block_store
~read_metadata
(Block
(Block_repr.hash head, Int32.(to_int (sub (Block_repr.level head) level))))
let read_predecessor_block_by_level block_store ?(read_metadata = false) ~head
level =
let open Lwt_result_syntax in
let head_level = Block_repr.level head in
let head_hash = Block_repr.hash head in
let distance = Int32.(to_int (sub head_level level)) in
let* o =
read_block block_store ~read_metadata (Block (head_hash, distance))
in
match o with
| None ->
if distance < 0 then tzfail (Bad_level {head_level; given_level = level})
else tzfail (Block_not_found {hash = head_hash; distance})
| Some b -> return b
let read_iterator_block_range_in_floating_stores block_store ~ro_store ~rw_store
~head (low, high) =
let open Lwt_result_syntax in
let* high_block = read_predecessor_block_by_level block_store ~head high in
let nb_blocks =
Int32.(add one (sub high low) |> to_int)
in
let*! block_hashes =
try_retrieve_n_predecessors
[ro_store; rw_store]
(Block_repr.hash high_block)
nb_blocks
in
let chunk_length = List.length block_hashes in
let reading_sequence =
Floating_block_store.raw_retrieve_blocks_seq
~src_floating_stores:[ro_store; rw_store]
~block_hashes
in
return {Cemented_block_store.chunk_length; reading_sequence}
let expected_savepoint block_store ~target_offset =
let open Lwt_result_syntax in
let cemented_dir = Naming.cemented_blocks_dir block_store.chain_dir in
let* metadata_table = Cemented_block_store.load_metadata_table cemented_dir in
match metadata_table with
| None ->
let*! current_savepoint = savepoint block_store in
return (snd current_savepoint)
| Some cemented_block_metadata_files ->
let nb_files = Array.length cemented_block_metadata_files in
if target_offset >= nb_files || nb_files = 0 then
let*! current_savepoint = savepoint block_store in
return (snd current_savepoint)
else if target_offset = 0 then
let cycle = cemented_block_metadata_files.(nb_files - 1) in
return (Int32.succ cycle.end_level)
else
let cycle = cemented_block_metadata_files.(nb_files - target_offset) in
return cycle.start_level
let available_savepoint block_store current_head savepoint_candidate =
let open Lwt_result_syntax in
let head_hash = Block_repr.hash current_head in
let*! current_savepoint = savepoint block_store in
let new_savepoint_level =
if savepoint_candidate < snd current_savepoint then snd current_savepoint
else savepoint_candidate
in
let distance =
Int32.(to_int (sub (Block_repr.level current_head) new_savepoint_level))
in
let* block =
let* o =
read_block ~read_metadata:false block_store (Block (head_hash, distance))
in
match o with
| Some b -> return b
| None -> tzfail (Wrong_predecessor (head_hash, distance))
in
return (descriptor block)
let preserved_block block_store current_head =
let open Lwt_result_syntax in
let head_hash = Block_repr.hash current_head in
let* current_head_metadata_o =
read_block_metadata block_store (Block (head_hash, 0))
in
let current_head_metadata =
WithExceptions.Option.get ~loc:__LOC__ current_head_metadata_o
in
let head_lpbl = Block_repr.last_preserved_block_level current_head_metadata in
let head_max_op_ttl =
Int32.of_int (Block_repr.max_operations_ttl current_head_metadata)
in
return Int32.(max 0l (sub head_lpbl head_max_op_ttl))
let infer_savepoint block_store current_head ~target_offset =
let open Lwt_result_syntax in
let* expected_savepoint_level =
expected_savepoint block_store ~target_offset
in
let* preserved_savepoint_level = preserved_block block_store current_head in
let savepoint_candidate =
min preserved_savepoint_level expected_savepoint_level
in
available_savepoint block_store current_head savepoint_candidate
let expected_caboose block_store ~target_offset =
let cemented_store = cemented_block_store block_store in
match Cemented_block_store.cemented_blocks_files cemented_store with
| None -> None
| Some cemented_block_files ->
let nb_files = Array.length cemented_block_files in
if target_offset > nb_files || nb_files = 0 then
None
else if target_offset = 0 then
let cycle = cemented_block_files.(nb_files - 1) in
Some (Int32.succ cycle.end_level)
else
let cycle = cemented_block_files.(nb_files - target_offset) in
Some cycle.start_level
let infer_caboose block_store savepoint current_head ~target_offset
~new_history_mode ~previous_history_mode =
let open Lwt_result_syntax in
match previous_history_mode with
| History_mode.Archive -> (
match new_history_mode with
| History_mode.Archive ->
tzfail
(Cannot_switch_history_mode
{
previous_mode = previous_history_mode;
next_mode = new_history_mode;
})
| Full _ ->
let*! b = caboose block_store in
return b
| Rolling _ -> return savepoint)
| Full _ -> (
match expected_caboose block_store ~target_offset with
| Some expected_caboose ->
let* preserved_caboose = preserved_block block_store current_head in
let new_caboose_level = min expected_caboose preserved_caboose in
let head_hash = Block_repr.hash current_head in
let distance =
Int32.(
to_int (sub (Block_repr.level current_head) new_caboose_level))
in
let* block =
let* o =
read_block
~read_metadata:false
block_store
(Block (head_hash, distance))
in
match o with
| Some b -> return b
| None -> tzfail (Wrong_predecessor (head_hash, distance))
in
return (descriptor block)
| None -> return savepoint)
| Rolling r ->
let current_offset =
Option.value r ~default:History_mode.default_additional_cycles
in
if current_offset.offset < target_offset then
let*! b = caboose block_store in
return b
else return savepoint
let switch_history_mode block_store ~current_head ~previous_history_mode
~new_history_mode =
let open Lwt_result_syntax in
let open History_mode in
match (previous_history_mode, new_history_mode) with
| Full _, Rolling m | Rolling _, Rolling m ->
let m =
(Option.value m ~default:History_mode.default_additional_cycles).offset
in
let* new_savepoint =
infer_savepoint block_store current_head ~target_offset:m
in
let* new_caboose =
infer_caboose
block_store
new_savepoint
current_head
~target_offset:m
~new_history_mode
~previous_history_mode
in
let cemented_block_store = cemented_block_store block_store in
let*! () =
Cemented_block_store.trigger_gc cemented_block_store new_history_mode
in
let* () = write_savepoint block_store new_savepoint in
let* () = write_caboose block_store new_caboose in
return_unit
| Full _, Full m ->
let m =
(Option.value m ~default:History_mode.default_additional_cycles).offset
in
let* new_savepoint =
infer_savepoint block_store current_head ~target_offset:m
in
let*! () =
Cemented_block_store.trigger_gc
(cemented_block_store block_store)
new_history_mode
in
let* () = write_savepoint block_store new_savepoint in
return_unit
| Archive, Full m | Archive, Rolling m ->
let m =
(Option.value m ~default:History_mode.default_additional_cycles).offset
in
let* new_savepoint =
infer_savepoint block_store current_head ~target_offset:m
in
let* new_caboose =
infer_caboose
block_store
new_savepoint
current_head
~target_offset:m
~new_history_mode
~previous_history_mode
in
let*! () =
Cemented_block_store.trigger_gc
(cemented_block_store block_store)
new_history_mode
in
let* () = write_savepoint block_store new_savepoint in
let* () = write_caboose block_store new_caboose in
return_unit
| _ ->
tzfail
(Cannot_switch_history_mode
{previous_mode = previous_history_mode; next_mode = new_history_mode})
let compute_new_savepoint block_store history_mode ~new_store
~min_level_to_preserve ~new_head ~cycles_to_cement =
let open Lwt_result_syntax in
assert (cycles_to_cement <> []) ;
let*! savepoint = Stored_data.get block_store.savepoint in
match history_mode with
| History_mode.Archive ->
return savepoint
| Full offset | Rolling offset -> (
let offset =
(Option.value offset ~default:History_mode.default_additional_cycles)
.offset
in
let* min_block_to_preserve =
read_predecessor_block_by_level
block_store
~head:new_head
min_level_to_preserve
in
let ((_min_block_hash, min_block_level) as min_block_descr) =
Block_repr.descriptor min_block_to_preserve
in
let cemented_cycles =
match
Cemented_block_store.cemented_blocks_files block_store.cemented_store
with
| None -> cycles_to_cement
| Some table ->
(Array.to_list table
|> List.map (fun {Cemented_block_store.start_level; end_level; _} ->
(start_level, end_level)))
@ cycles_to_cement
in
let* cemented_metadata_table =
Cemented_block_store.cemented_metadata_files block_store.cemented_store
in
let cemented_metadata_cycles =
match cemented_metadata_table with
| None -> []
| Some table ->
Array.to_list table
|> List.map
(fun
({Cemented_block_store.start_level; end_level; _} :
Cemented_block_store.cemented_metadata_file)
-> (start_level, end_level))
in
if Compare.Int32.(snd savepoint >= min_block_level) then return savepoint
else
let cemented_cycles_len = List.length cemented_cycles in
if offset = 0 then return min_block_descr
else if
cemented_cycles_len < offset
then
let savepoint_hash, savepoint_level = savepoint in
let is_savepoint_in_cemented =
List.exists
(fun (l, h) -> l <= savepoint_level && savepoint_level <= h)
(cycles_to_cement @ cemented_metadata_cycles)
in
if not is_savepoint_in_cemented then
let*! is_savepoint_in_new_store =
Floating_block_store.mem new_store savepoint_hash
in
if not is_savepoint_in_new_store then return min_block_descr
else return savepoint
else return savepoint
else
let shifted_savepoint_level =
fst
(List.nth cemented_cycles (cemented_cycles_len - offset)
|> WithExceptions.Option.get ~loc:__LOC__)
in
if Compare.Int32.(snd savepoint >= shifted_savepoint_level) then
return savepoint
else if
Compare.Int32.(shifted_savepoint_level >= min_block_level)
then return min_block_descr
else
let* o =
read_predecessor_block_by_level_opt
block_store
~head:new_head
shifted_savepoint_level
in
match o with
| None -> tzfail (Cannot_retrieve_savepoint shifted_savepoint_level)
| Some savepoint -> return (Block_repr.descriptor savepoint))
let compute_new_caboose block_store history_mode ~new_savepoint
~min_level_to_preserve ~new_head =
let open Lwt_result_syntax in
let*! caboose = Stored_data.get block_store.caboose in
match history_mode with
| History_mode.Archive | Full _ ->
return caboose
| Rolling offset ->
let offset =
(Option.value offset ~default:History_mode.default_additional_cycles)
.offset
in
if Compare.Int32.(snd caboose >= min_level_to_preserve) then
return caboose
else if
Compare.Int32.(min_level_to_preserve < snd new_savepoint) || offset = 0
then
let* min_block_to_preserve =
read_predecessor_block_by_level
block_store
~head:new_head
min_level_to_preserve
in
return (Block_repr.descriptor min_block_to_preserve)
else return new_savepoint
module BlocksLPBL = Set.Make (Int32)
let default_cycle_size_limit = 65_535l
let may_shrink_cycles cycles ~cycle_size_limit =
let rec loop acc cycles =
match cycles with
| [] -> List.rev acc
| ((cycle_start, cycle_end) as hd) :: tl ->
let diff = Int32.(sub cycle_end cycle_start) in
if diff >= cycle_size_limit then
let mid = Int32.(div diff 2l) in
let left_cycle_upper_bound = Int32.(add cycle_start mid) in
let left_cycle = (cycle_start, left_cycle_upper_bound) in
let right_cycle =
(Int32.(add left_cycle_upper_bound 1l), cycle_end)
in
loop acc (left_cycle :: right_cycle :: tl)
else loop (hd :: acc) tl
in
loop [] cycles
let update_floating_stores block_store ~history_mode ~ro_store ~rw_store
~new_store ~new_head ~new_head_lpbl ~lowest_bound_to_preserve_in_floating
~cementing_highwatermark ~cycle_size_limit =
let open Lwt_result_syntax in
let*! () = Store_events.(emit start_updating_floating_stores) () in
let* lpbl_block =
read_predecessor_block_by_level block_store ~head:new_head new_head_lpbl
in
let final_hash, final_level = Block_repr.descriptor lpbl_block in
let max_nb_blocks_to_retrieve =
Compare.Int.(
max
1
Int32.(
add one (sub final_level lowest_bound_to_preserve_in_floating)
|> to_int))
in
let*! () = Store_events.(emit start_retreiving_predecessors) () in
let floating_stores =
[ro_store; rw_store]
in
let*! lpbl_predecessors =
try_retrieve_n_predecessors
floating_stores
final_hash
max_nb_blocks_to_retrieve
in
let*! min_level_to_preserve =
match lpbl_predecessors with
| [] -> Lwt.return new_head_lpbl
| oldest_predecessor :: _ -> (
let*! o =
List.find_map_s
(fun floating_store ->
Floating_block_store.read_block floating_store oldest_predecessor)
floating_stores
in
match o with
| None -> Lwt.return new_head_lpbl
| Some x -> Lwt.return (Block_repr.level x))
in
let* () =
Floating_block_store.raw_copy_all
~src_floating_stores:floating_stores
~block_hashes:lpbl_predecessors
~dst_floating_store:new_store
in
let visited = ref (Block_hash.Set.singleton (Block_repr.hash lpbl_block)) in
let blocks_lpbl = ref BlocksLPBL.empty in
let*! () = Store_events.(emit start_retreiving_cycles) () in
let* () =
List.iter_es
(fun store ->
Floating_block_store.raw_iterate
(fun (block_bytes, total_block_length) ->
let block_level = Block_repr_unix.raw_get_block_level block_bytes in
if Compare.Int32.(block_level <= cementing_highwatermark) then
return_unit
else
let block_lpbl_opt =
Block_repr_unix.raw_get_last_preserved_block_level
block_bytes
total_block_length
in
Option.iter
(fun block_lpbl ->
if
Compare.Int32.(
cementing_highwatermark < block_lpbl
&& block_lpbl <= new_head_lpbl)
then blocks_lpbl := BlocksLPBL.add block_lpbl !blocks_lpbl)
block_lpbl_opt ;
let block_predecessor =
Block_repr_unix.raw_get_block_predecessor block_bytes
in
let block_hash = Block_repr_unix.raw_get_block_hash block_bytes in
if Block_hash.Set.mem block_predecessor !visited then (
visited := Block_hash.Set.add block_hash !visited ;
let*! {predecessors; resulting_context_hash} =
let*! pred_opt =
Floating_block_store.find_info store block_hash
in
Lwt.return (WithExceptions.Option.get ~loc:__LOC__ pred_opt)
in
Floating_block_store.raw_append
new_store
( block_hash,
block_bytes,
total_block_length,
predecessors,
resulting_context_hash ))
else return_unit)
store)
[ro_store; rw_store]
in
let is_cementing_highwatermark_genesis =
Compare.Int32.(
cementing_highwatermark = Block_repr.level block_store.genesis_block)
in
let rec loop acc pred = function
| [] -> tzfail (Cannot_cement_blocks `Empty)
| [h] ->
assert (Compare.Int32.(h = new_head_lpbl)) ;
return (List.rev ((Int32.succ pred, h) :: acc))
| h :: (h' :: _ as t) ->
assert (Compare.Int32.(h < h')) ;
loop ((Int32.succ pred, h) :: acc) h t
in
let initial_pred =
if is_cementing_highwatermark_genesis then
Int32.pred cementing_highwatermark
else cementing_highwatermark
in
let sorted_lpbl =
List.sort Compare.Int32.compare (BlocksLPBL.elements !blocks_lpbl)
in
let* cycles_to_cement =
let* cycles = loop [] initial_pred sorted_lpbl in
return (may_shrink_cycles cycles ~cycle_size_limit)
in
let* new_savepoint =
compute_new_savepoint
block_store
history_mode
~new_store
~min_level_to_preserve
~new_head
~cycles_to_cement
in
let* new_caboose =
compute_new_caboose
block_store
history_mode
~new_savepoint
~min_level_to_preserve
~new_head
in
return (cycles_to_cement, new_savepoint, new_caboose)
let find_floating_store_by_kind block_store kind =
List.find_opt
(fun floating_store -> kind = Floating_block_store.kind floating_store)
(block_store.rw_floating_block_store :: block_store.ro_floating_block_stores)
let move_floating_store block_store ~src:floating_store ~dst_kind =
let open Lwt_result_syntax in
let src_kind = Floating_block_store.kind floating_store in
let* () = fail_when (src_kind = dst_kind) Wrong_floating_kind_swap in
let*! () =
match find_floating_store_by_kind block_store dst_kind with
| Some old_floating_store ->
Floating_block_store.swap ~src:floating_store ~dst:old_floating_store
| None ->
let src_floating_store_dir_path =
Naming.(
floating_blocks_dir block_store.chain_dir src_kind |> dir_path)
in
let dst_floating_store_dir_path =
Naming.(
floating_blocks_dir block_store.chain_dir dst_kind |> dir_path)
in
Lwt_unix.rename src_floating_store_dir_path dst_floating_store_dir_path
in
return_unit
let move_all_floating_stores block_store ~new_ro_store =
let open Lwt_result_syntax in
let chain_dir = block_store.chain_dir in
protect
~on_error:(fun err ->
let*! () =
List.iter_s
Floating_block_store.close
(block_store.rw_floating_block_store
:: block_store.ro_floating_block_stores)
in
let*! r =
protect (fun () ->
let*! ro = Floating_block_store.init chain_dir ~readonly:false RO in
block_store.ro_floating_block_stores <- [ro] ;
let*! rw = Floating_block_store.init chain_dir ~readonly:false RW in
block_store.rw_floating_block_store <- rw ;
return_unit)
in
match r with
| Ok () -> Lwt.return (Error err)
| Error errs' -> Lwt.return_error (TzTrace.conp errs' err))
(fun () ->
let* () =
move_floating_store block_store ~src:new_ro_store ~dst_kind:RO
in
let* () =
move_floating_store
block_store
~src:block_store.rw_floating_block_store
~dst_kind:RW
in
let*! ro = Floating_block_store.init chain_dir ~readonly:false RO in
block_store.ro_floating_block_stores <- [ro] ;
let*! rw = Floating_block_store.init chain_dir ~readonly:false RW in
block_store.rw_floating_block_store <- rw ;
return_unit)
let check_store_consistency block_store ~cementing_highwatermark =
let open Lwt_result_syntax in
match
Cemented_block_store.get_highest_cemented_level block_store.cemented_store
with
| None ->
return_unit
| Some highest_cemented_level ->
fail_unless
Compare.Int32.(highest_cemented_level = cementing_highwatermark)
(Store_errors.Inconsistent_cemented_store
(Inconsistent_highest_cemented_level
{highest_cemented_level; cementing_highwatermark}))
let compute_lowest_bound_to_preserve_in_floating block_store ~new_head
~new_head_metadata =
let open Lwt_result_syntax in
let lpbl = Block_repr.last_preserved_block_level new_head_metadata in
let* lpbl_block =
trace
Missing_last_preserved_block
(read_predecessor_block_by_level
block_store
~read_metadata:true
~head:new_head
lpbl)
in
return
(Int32.sub
lpbl
(Int32.of_int
(match Block_repr.metadata lpbl_block with
| None ->
Block_repr.max_operations_ttl new_head_metadata
| Some metadata -> Block_repr.max_operations_ttl metadata)))
let instanciate_temporary_floating_store block_store =
let open Lwt_result_syntax in
protect
~on_error:(fun err ->
(match block_store.ro_floating_block_stores with
| [old_rw; old_ro] ->
block_store.rw_floating_block_store <- old_rw ;
block_store.ro_floating_block_stores <- [old_ro]
| [_] -> ()
| _ -> assert false) ;
Lwt.return (Error err))
(fun () ->
trace
Cannot_instanciate_temporary_floating_store
(assert (
Compare.List_length_with.(block_store.ro_floating_block_stores = 1)) ;
let ro_store =
List.hd block_store.ro_floating_block_stores
|> WithExceptions.Option.get ~loc:__LOC__
in
let rw_store = block_store.rw_floating_block_store in
block_store.ro_floating_block_stores <-
block_store.rw_floating_block_store
:: block_store.ro_floating_block_stores ;
let*! new_rw_store =
Floating_block_store.init
block_store.chain_dir
~readonly:false
RW_TMP
in
block_store.rw_floating_block_store <- new_rw_store ;
return (ro_store, rw_store, new_rw_store)))
let create_merging_thread block_store ~history_mode ~old_ro_store ~old_rw_store
~new_head ~new_head_lpbl ~lowest_bound_to_preserve_in_floating
~cementing_highwatermark ~cycle_size_limit =
let open Lwt_result_syntax in
let*! () = Store_events.(emit start_merging_thread) () in
let*! new_ro_store =
Floating_block_store.init block_store.chain_dir ~readonly:false RO_TMP
in
let* new_savepoint, new_caboose =
Lwt.catch
(fun () ->
let* cycles_interval_to_cement, new_savepoint, new_caboose =
update_floating_stores
block_store
~history_mode
~ro_store:old_ro_store
~rw_store:old_rw_store
~new_store:new_ro_store
~new_head
~new_head_lpbl
~lowest_bound_to_preserve_in_floating
~cementing_highwatermark
~cycle_size_limit
in
let*! () =
Store_events.(emit cementing_block_ranges) cycles_interval_to_cement
in
let cycle_reader =
read_iterator_block_range_in_floating_stores
block_store
~ro_store:old_ro_store
~rw_store:old_rw_store
~head:new_head
in
let* () =
match history_mode with
| History_mode.Archive ->
List.iter_es
(fun cycle_range ->
let* chunk_iterator = cycle_reader cycle_range in
cement_blocks
~write_metadata:true
block_store
chunk_iterator
~cycle_range)
cycles_interval_to_cement
| Rolling offset ->
let offset =
(Option.value
offset
~default:History_mode.default_additional_cycles)
.offset
in
if offset > 0 then
let* () =
List.iter_es
(fun cycle_range ->
let* chunk_iterator = cycle_reader cycle_range in
cement_blocks
~write_metadata:true
block_store
chunk_iterator
~cycle_range)
cycles_interval_to_cement
in
let*! () =
Cemented_block_store.trigger_gc
block_store.cemented_store
history_mode
in
return_unit
else
return_unit
| Full offset ->
let offset =
(Option.value
offset
~default:History_mode.default_additional_cycles)
.offset
in
if offset > 0 then
let* () =
List.iter_es
(fun cycle_range ->
let* chunk_iterator = cycle_reader cycle_range in
cement_blocks
~write_metadata:true
block_store
chunk_iterator
~cycle_range)
cycles_interval_to_cement
in
let*! () =
Cemented_block_store.trigger_gc
block_store.cemented_store
history_mode
in
return_unit
else
List.iter_es
(fun cycle_range ->
let* chunk_iterator = cycle_reader cycle_range in
cement_blocks
~write_metadata:false
block_store
chunk_iterator
~cycle_range)
cycles_interval_to_cement
in
return (new_savepoint, new_caboose))
(fun exn ->
let*! () = Floating_block_store.close new_ro_store in
Lwt.fail exn)
in
return (new_ro_store, new_savepoint, new_caboose)
let may_trigger_gc block_store history_mode ~previous_savepoint ~new_savepoint =
let open Lwt_result_syntax in
let savepoint_hash = fst new_savepoint in
if
History_mode.(equal history_mode Archive)
|| Block_hash.(savepoint_hash = fst previous_savepoint)
then return_unit
else
match block_store.gc_callback with
| None -> return_unit
| Some gc ->
let*! () = Store_events.(emit start_context_gc new_savepoint) in
gc savepoint_hash
let split_context block_store new_head_lpbl =
let open Lwt_result_syntax in
match block_store.split_callback with
| None -> return_unit
| Some split ->
let*! () = Store_events.(emit start_context_split new_head_lpbl) in
split ()
let merge_stores ?(cycle_size_limit = default_cycle_size_limit) block_store
~(on_error : tztrace -> unit tzresult Lwt.t) ~finalizer ~history_mode
~new_head ~new_head_metadata ~cementing_highwatermark =
let open Lwt_result_syntax in
let* () = fail_when block_store.readonly Cannot_write_in_readonly in
let*! () = Lwt_mutex.lock block_store.merge_mutex in
protect
~on_error:(fun err ->
Lwt_mutex.unlock block_store.merge_mutex ;
Lwt.return (Error err))
(fun () ->
let*! store_status = status block_store in
let* () =
fail_unless
(store_status = Idle)
(Cannot_merge_store {status = status_to_string store_status})
in
let* () = write_status block_store Merging in
let new_head_lpbl =
Block_repr.last_preserved_block_level new_head_metadata
in
let*! () = Store_events.(emit start_merging_stores) new_head_lpbl in
let* () = check_store_consistency block_store ~cementing_highwatermark in
let*! previous_savepoint = Stored_data.get block_store.savepoint in
let* lowest_bound_to_preserve_in_floating =
compute_lowest_bound_to_preserve_in_floating
block_store
~new_head
~new_head_metadata
in
let merge_start = Time.System.now () in
let* () =
Lwt_idle_waiter.force_idle block_store.merge_scheduler (fun () ->
let* old_ro_store, old_rw_store, _new_rw_store =
instanciate_temporary_floating_store block_store
in
let merging_thread : unit tzresult Lwt.t =
let* () =
Lwt.finalize
(fun () ->
protect
~on_error:(fun err ->
let msg = Format.asprintf "%a" pp_print_trace err in
let*! () =
Store_events.(emit merge_error)
(cementing_highwatermark, new_head_lpbl, msg)
in
on_error (Merge_error :: err))
(fun () ->
let* new_ro_store, new_savepoint, new_caboose =
create_merging_thread
block_store
~cycle_size_limit
~history_mode
~old_ro_store
~old_rw_store
~new_head
~new_head_lpbl
~lowest_bound_to_preserve_in_floating
~cementing_highwatermark
in
let* () =
Lwt_idle_waiter.force_idle
block_store.merge_scheduler
(fun () ->
let* () =
move_all_floating_stores
block_store
~new_ro_store
in
let* () = write_caboose block_store new_caboose in
let* () =
write_savepoint block_store new_savepoint
in
return_unit)
in
let* () =
may_trigger_gc
block_store
history_mode
~previous_savepoint
~new_savepoint
in
let* () = finalizer new_head_lpbl in
block_store.merging_thread <- None ;
let* () = write_status block_store Idle in
return_unit))
(fun () ->
Lwt_mutex.unlock block_store.merge_mutex ;
Lwt.return_unit)
in
let merge_end = Time.System.now () in
let merging_time = Ptime.diff merge_end merge_start in
let*! () = Store_events.(emit end_merging_stores) merging_time in
Prometheus.Gauge.set
Store_metrics.metrics.last_store_merge_time
(Ptime.Span.to_float_s merging_time) ;
return_unit
in
block_store.merging_thread <- Some (new_head_lpbl, merging_thread) ;
return_unit)
in
return_unit)
let get_merge_status block_store =
match block_store.merging_thread with
| None -> Not_running
| Some (_target, th) -> (
match Lwt.state th with
| Lwt.Sleep -> Running
| Lwt.Return (Ok ()) -> Not_running
| Lwt.Return (Error errs) -> Merge_failed errs
| Lwt.Fail exn -> Merge_failed [Exn exn])
let merge_temporary_floating block_store =
let open Lwt_result_syntax in
let chain_dir = block_store.chain_dir in
let*! () =
List.iter_s
Floating_block_store.close
(block_store.rw_floating_block_store
:: block_store.ro_floating_block_stores)
in
let ro_tmp_floating_store_dir_path =
Naming.floating_blocks_dir chain_dir RO_TMP |> Naming.dir_path
in
let*! () = Lwt_utils_unix.remove_dir ro_tmp_floating_store_dir_path in
let*! rw_restore =
Floating_block_store.init chain_dir ~readonly:false (Restore RW)
in
let* () =
Lwt.finalize
(fun () ->
let*! rw = Floating_block_store.init chain_dir ~readonly:true RW in
let*! rw_tmp =
Floating_block_store.init chain_dir ~readonly:true RW_TMP
in
let* () =
Floating_block_store.append_floating_store ~from:rw ~into:rw_restore
in
let* () =
Floating_block_store.append_floating_store
~from:rw_tmp
~into:rw_restore
in
let*! () = Floating_block_store.swap ~src:rw_restore ~dst:rw in
let*! () = Floating_block_store.delete_files rw_tmp in
return_unit)
(fun () -> Floating_block_store.delete_files rw_restore)
in
let*! ro = Floating_block_store.init chain_dir ~readonly:false RO in
let*! rw = Floating_block_store.init chain_dir ~readonly:false RW in
block_store.ro_floating_block_stores <- [ro] ;
block_store.rw_floating_block_store <- rw ;
write_status block_store Idle
let may_clean_cementing_artifacts block_store =
let open Lwt_syntax in
let chain_dir = block_store.chain_dir in
let cemented_path = Naming.cemented_blocks_dir chain_dir |> Naming.dir_path in
let rec loop dir =
let* s = Lwt_unix.readdir dir in
match s with
| s when Filename.extension s = ".tmp" ->
let* () = Lwt_unix.unlink (Filename.concat cemented_path s) in
loop dir
| _ -> loop dir
in
let* b = Lwt_unix.file_exists cemented_path in
match b with
| true ->
let* dir = Lwt_unix.opendir cemented_path in
Unit.catch_s
~catch_only:(function End_of_file -> true | _ -> false)
(fun () ->
Lwt.finalize (fun () -> loop dir) (fun () -> Lwt_unix.closedir dir))
| false -> Lwt.return_unit
let may_recover_merge block_store =
let open Lwt_result_syntax in
let* () = fail_when block_store.readonly Cannot_write_in_readonly in
let* () =
Lwt_idle_waiter.force_idle block_store.merge_scheduler (fun () ->
Lwt_mutex.with_lock block_store.merge_mutex (fun () ->
let*! d = Stored_data.get block_store.status_data in
match d with
| Idle -> return_unit
| Merging ->
let*! () = Store_events.(emit recover_merge ()) in
merge_temporary_floating block_store))
in
let*! () = may_clean_cementing_artifacts block_store in
return_unit
let load ?block_cache_limit chain_dir ~genesis_block ~readonly =
let open Lwt_result_syntax in
let* cemented_store = Cemented_block_store.init chain_dir ~readonly in
let*! ro_floating_block_store =
Floating_block_store.init chain_dir ~readonly RO
in
let ro_floating_block_stores = [ro_floating_block_store] in
let*! rw_floating_block_store =
Floating_block_store.init chain_dir ~readonly RW
in
let genesis_descr = Block_repr.descriptor genesis_block in
let* savepoint =
Stored_data.init
(Naming.savepoint_file chain_dir)
~initial_data:genesis_descr
in
let*! _, savepoint_level = Stored_data.get savepoint in
Prometheus.Gauge.set
Store_metrics.metrics.savepoint_level
(Int32.to_float savepoint_level) ;
let* caboose =
Stored_data.init (Naming.caboose_file chain_dir) ~initial_data:genesis_descr
in
let*! _, caboose_level = Stored_data.get caboose in
Prometheus.Gauge.set
Store_metrics.metrics.caboose_level
(Int32.to_float caboose_level) ;
let* status_data =
Stored_data.init
(Naming.block_store_status_file chain_dir)
~initial_data:Idle
in
let block_cache =
Block_lru_cache.create
(Option.value block_cache_limit ~default:default_block_cache_limit)
in
let merge_scheduler = Lwt_idle_waiter.create () in
let merge_mutex = Lwt_mutex.create () in
let block_store =
{
chain_dir;
genesis_block;
readonly;
cemented_store;
ro_floating_block_stores;
rw_floating_block_store;
caboose;
savepoint;
status_data;
block_cache;
gc_callback = None;
split_callback = None;
merge_mutex;
merge_scheduler;
merging_thread = None;
}
in
let* () =
if not readonly then may_recover_merge block_store else return_unit
in
let*! status = Stored_data.get status_data in
let* () = fail_unless (status = Idle) Cannot_load_degraded_store in
return block_store
let create ?block_cache_limit chain_dir ~genesis_block =
let open Lwt_result_syntax in
let* block_store =
load chain_dir ?block_cache_limit ~genesis_block ~readonly:false
in
let* () =
store_block
block_store
genesis_block
genesis_block.contents.header.shell.context
in
return block_store
let register_gc_callback block_store gc_callback =
block_store.gc_callback <- gc_callback
let register_split_callback block_store split_callback =
block_store.split_callback <- split_callback
let pp_merge_status fmt status =
match status with
| Not_running -> Format.fprintf fmt "not running"
| Running -> Format.fprintf fmt "running"
| Merge_failed err -> Format.fprintf fmt "merge failed %a" pp_print_trace err
let await_merging block_store =
let open Lwt_syntax in
let* () = Lwt_mutex.lock block_store.merge_mutex in
let thread = block_store.merging_thread in
Lwt_mutex.unlock block_store.merge_mutex ;
match thread with
| None -> Lwt.return_unit
| Some (_, th) ->
let* _ = th in
Lwt.return_unit
let close block_store =
let open Lwt_syntax in
let* () =
match get_merge_status block_store with
| Not_running | Merge_failed _ -> Lwt.return_unit
| Running ->
let* () = Store_events.(emit try_waiting_for_merge_termination) () in
Lwt_unix.with_timeout 5. (fun () ->
let* () = await_merging block_store in
Lwt.return_unit)
in
Cemented_block_store.close block_store.cemented_store ;
List.iter_s
Floating_block_store.close
(block_store.rw_floating_block_store :: block_store.ro_floating_block_stores)
let v_3_0_upgrade chain_dir ~cleanups ~finalizers =
let open Lwt_result_syntax in
let get_floating_paths kind =
let legacy_floating_blocks_dir =
Naming.floating_blocks_dir chain_dir kind
in
let legacy_floating_index_dir =
Naming.dir_path
(Naming.floating_blocks_index_dir legacy_floating_blocks_dir)
in
let legacy_floating_blocks_file =
Naming.floating_blocks_file legacy_floating_blocks_dir
in
let new_floating_index_dir =
Naming.dir_path
(Naming.floating_blocks_index_dir legacy_floating_blocks_dir)
^ ".new"
in
( Naming.dir_path legacy_floating_blocks_dir,
legacy_floating_index_dir,
legacy_floating_blocks_file,
new_floating_index_dir )
in
let all_kinds = Naming.[RO; RW; RW_TMP; RO_TMP] in
let upgrade_floating_index kind =
let ( legacy_floating_blocks_dir,
legacy_floating_index_dir,
legacy_floating_blocks_file,
new_floating_index_dir ) =
get_floating_paths kind
in
let*! should_upgrade = Lwt_unix.file_exists legacy_floating_blocks_dir in
if not should_upgrade then return_unit
else
let clean_failed_upgrade () =
let*! exists = Lwt_unix.file_exists new_floating_index_dir in
if exists then Lwt_utils_unix.remove_dir new_floating_index_dir
else Lwt.return_unit
in
let finalize () =
let*! exists = Lwt_unix.file_exists new_floating_index_dir in
if exists then
let*! () = Lwt_utils_unix.remove_dir legacy_floating_index_dir in
Lwt_unix.rename new_floating_index_dir legacy_floating_index_dir
else Lwt.return_unit
in
finalizers := finalize :: !finalizers ;
cleanups := clean_failed_upgrade :: !cleanups ;
let legacy_index =
Floating_block_index.Legacy.v
~log_size:Floating_block_store.default_floating_blocks_log_size
~readonly:true
legacy_floating_index_dir
in
let new_index =
Floating_block_index.v
~log_size:Floating_block_store.default_floating_blocks_log_size
~readonly:false
new_floating_index_dir
in
let*! fd =
Lwt_unix.openfile
(Naming.file_path legacy_floating_blocks_file)
[Unix.O_CLOEXEC; Unix.O_RDONLY]
0o444
in
Lwt.finalize
(fun () ->
let* () =
Floating_block_store.raw_iterate_fd
(fun (block_b, _len) ->
let block_hash = Block_repr_unix.raw_get_block_hash block_b in
let block_context = Block_repr_unix.raw_get_context block_b in
let* {
Floating_block_index.Legacy.Legacy_block_info.offset;
predecessors;
} =
try
return
@@ Floating_block_index.Legacy.find legacy_index block_hash
with
| Not_found ->
let block_level =
Block_repr_unix.raw_get_block_level block_b
in
let floating_kind =
(function
| Naming.RO -> "RO"
| RW -> "RW"
| RO_TMP -> "RO_TMP"
| RW_TMP -> "RW_TMP"
| Restore _ -> "Restored")
kind
in
tzfail
(V_3_0_upgrade_missing_floating_block
{block_hash; block_level; floating_kind})
| e -> raise e
in
let resulting_context_hash = block_context in
let new_value =
Floating_block_index.Block_info.
{offset; predecessors; resulting_context_hash}
in
Floating_block_index.replace new_index block_hash new_value ;
return_unit)
fd
in
return_unit)
(fun () ->
Floating_block_index.flush new_index ;
Floating_block_index.close new_index ;
Floating_block_index.Legacy.close legacy_index ;
let*! () = Lwt_unix.close fd in
Lwt.return_unit)
in
protect (fun () -> List.iter_es upgrade_floating_index all_kinds)