Source file 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
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
open Store_types
open Store_errors
module Shared = struct
type 'a t = {mutable data : 'a; lock : Lwt_idle_waiter.t}
let create data = {data; lock = Lwt_idle_waiter.create ()}
let use t f =
let {data; lock} = t in
Lwt_idle_waiter.task lock (fun () -> f data)
let locked_use t f =
let {data; lock} = t in
Lwt_idle_waiter.force_idle lock (fun () -> f data)
let update_with v f =
let open Lwt_result_syntax in
Lwt_idle_waiter.force_idle v.lock (fun () ->
let* o_r = f v.data in
match o_r with
| Some new_data, res ->
v.data <- new_data ;
return res
| None, res -> return res)
end
type store = {
store_dir : [`Store_dir] Naming.directory;
mutable main_chain_store : chain_store option;
context_index : Context_ops.index;
protocol_store : Protocol_store.t;
allow_testchains : bool;
protocol_watcher : Protocol_hash.t Lwt_watcher.input;
global_block_watcher : (chain_store * block) Lwt_watcher.input;
}
and chain_store = {
global_store : store;
chain_id : Chain_id.t;
chain_dir : [`Chain_dir] Naming.directory;
chain_config : chain_config;
block_store : Block_store.t;
chain_state : chain_state Shared.t;
genesis_block_data : block Stored_data.t;
block_watcher : block Lwt_watcher.input;
validated_block_watcher : block Lwt_watcher.input;
block_rpc_directories :
(chain_store * block) Tezos_rpc.Directory.t Protocol_hash.Map.t
Protocol_hash.Table.t;
lockfile : Lwt_unix.file_descr;
}
and chain_state = {
current_head_data : block_descriptor Stored_data.t;
cementing_highwatermark_data : int32 option Stored_data.t;
target_data : block_descriptor option Stored_data.t;
checkpoint_data : block_descriptor Stored_data.t;
protocol_levels_data :
Protocol_levels.protocol_info Protocol_levels.t Stored_data.t;
invalid_blocks_data : invalid_block Block_hash.Map.t Stored_data.t;
forked_chains_data : Block_hash.t Chain_id.Map.t Stored_data.t;
current_head : Block_repr.t;
active_testchain : testchain option;
mempool : Mempool.t;
live_blocks : Block_hash.Set.t;
live_operations : Operation_hash.Set.t;
mutable live_data_cache :
(Block_hash.t * Operation_hash.Set.t) Ringo.Ring.t option;
validated_blocks : Block_repr.t Block_lru_cache.t;
}
and testchain = {forked_block : Block_hash.t; testchain_store : chain_store}
and block = Block_repr.t
type t = store
let current_head chain_store =
Shared.use chain_store.chain_state (fun {current_head; _} ->
Lwt.return current_head)
let caboose chain_store = Block_store.caboose chain_store.block_store
let checkpoint chain_store =
Shared.use chain_store.chain_state (fun {checkpoint_data; _} ->
Stored_data.get checkpoint_data)
let target chain_store =
Shared.use chain_store.chain_state (fun {target_data; _} ->
Stored_data.get target_data)
let savepoint chain_store = Block_store.savepoint chain_store.block_store
let genesis chain_store = chain_store.chain_config.genesis
let history_mode chain_store = chain_store.chain_config.history_mode
let read_ancestor_hash {block_store; _} ~distance hash =
Block_store.get_hash block_store (Block (hash, distance))
let read_ancestor_hash_by_level chain_store head level =
let open Lwt_syntax in
let distance = Int32.(to_int (sub (Block_repr.level head) level)) in
let* ro = read_ancestor_hash chain_store ~distance (Block_repr.hash head) in
match ro with Ok (Some x) -> Lwt.return_some x | _ -> Lwt.return_none
let locked_is_acceptable_block chain_state (hash, level) =
let open Lwt_syntax in
let* _checkpoint_hash, checkpoint_level =
Stored_data.get chain_state.checkpoint_data
in
if Compare.Int32.(checkpoint_level >= level) then Lwt.return_false
else
let* o = Stored_data.get chain_state.target_data in
match o with
| None -> Lwt.return_true
| Some (target_hash, target_level) ->
if Compare.Int32.(level = target_level) then
Lwt.return @@ Block_hash.equal hash target_hash
else Lwt.return_true
let find_protocol_info chain_store ~protocol_level =
let open Lwt_syntax in
Shared.use chain_store.chain_state (fun {protocol_levels_data; _} ->
let* protocol_levels = Stored_data.get protocol_levels_data in
return (Protocol_levels.find protocol_level protocol_levels))
let find_activation_block chain_store ~protocol_level =
let open Lwt_syntax in
let* protocol_info = find_protocol_info chain_store ~protocol_level in
match protocol_info with
| Some {activation_block; _} -> return_some activation_block
| None -> return_none
let find_protocol chain_store ~protocol_level =
let open Lwt_syntax in
let* o = find_protocol_info chain_store ~protocol_level in
match o with
| None -> return_none
| Some {Protocol_levels.protocol; _} -> return_some protocol
let expect_predecessor_context_hash_exn chain_store protocol_level =
let open Lwt_syntax in
let* protocol_info = find_protocol_info chain_store ~protocol_level in
match protocol_info with
| Some {expect_predecessor_context; _} -> return expect_predecessor_context
| None ->
Format.ksprintf
Stdlib.failwith
"cannot find protocol info for level: %d"
protocol_level
let expect_predecessor_context_hash chain_store ~protocol_level =
let open Lwt_result_syntax in
Lwt.catch
(fun () ->
let*! b =
expect_predecessor_context_hash_exn chain_store protocol_level
in
return b)
(fun _ -> tzfail (Protocol_not_found {protocol_level}))
let create_lockfile chain_dir =
let open Lwt_syntax in
protect (fun () ->
let* fd =
Lwt_unix.openfile
(Naming.lock_file chain_dir |> Naming.file_path)
[Unix.O_CREAT; O_RDWR; O_CLOEXEC; O_SYNC]
0o644
in
return_ok fd)
let lock_for_write lockfile = Lwt_unix.lockf lockfile Unix.F_LOCK 0
let lock_for_read lockfile = Lwt_unix.lockf lockfile Unix.F_RLOCK 0
let unlock lockfile = Lwt_unix.lockf lockfile Unix.F_ULOCK 0
let try_lock_for_write lockfile =
let open Lwt_syntax in
Lwt.catch
(fun () ->
let* () = Lwt_unix.lockf lockfile Unix.F_TLOCK 0 in
Lwt.return_true)
(fun _ -> Lwt.return_false)
let may_unlock lockfile = Unit.catch_s (fun () -> unlock lockfile)
module Block = struct
type nonrec block = block
type t = block
type metadata = Block_repr.metadata = {
message : string option;
max_operations_ttl : int;
last_allowed_fork_level : Int32.t;
block_metadata : Bytes.t;
operations_metadata : Block_validation.operation_metadata list list;
}
let equal b b' = Block_hash.equal (Block_repr.hash b) (Block_repr.hash b')
let descriptor blk = Block_repr.descriptor blk
let is_known_valid {block_store; _} hash =
let open Lwt_syntax in
let* r = Block_store.(mem block_store (Block (hash, 0))) in
match r with
| Ok k -> Lwt.return k
| Error _ ->
Lwt.return_false
let locked_is_known_invalid chain_state hash =
let open Lwt_syntax in
let* invalid_blocks = Stored_data.get chain_state.invalid_blocks_data in
Lwt.return (Block_hash.Map.mem hash invalid_blocks)
let is_known_invalid {chain_state; _} hash =
Shared.use chain_state (fun chain_state ->
locked_is_known_invalid chain_state hash)
let is_known_validated {chain_state; _} hash =
Shared.use chain_state (fun {validated_blocks; _} ->
Option.value ~default:Lwt.return_false
@@ Block_lru_cache.bind validated_blocks hash (function
| None -> Lwt.return_false
| Some _ -> Lwt.return_true))
let is_known chain_store hash =
let open Lwt_syntax in
let* is_known = is_known_valid chain_store hash in
if is_known then Lwt.return_true else is_known_invalid chain_store hash
let validity chain_store hash =
let open Lwt_syntax in
let* b = is_known chain_store hash in
match b with
| false -> Lwt.return Block_locator.Unknown
| true -> (
let* b = is_known_invalid chain_store hash in
match b with
| true -> Lwt.return Block_locator.Known_invalid
| false -> Lwt.return Block_locator.Known_valid)
let is_genesis chain_store hash =
let genesis = genesis chain_store in
Block_hash.equal hash genesis.Genesis.block
let read_block {block_store; _} ?(distance = 0) hash =
let open Lwt_result_syntax in
let* o =
Block_store.read_block
~read_metadata:false
block_store
(Block (hash, distance))
in
match o with
| None -> tzfail @@ Block_not_found {hash; distance}
| Some block -> return block
let read_block_metadata ?(distance = 0) chain_store hash =
Block_store.read_block_metadata
chain_store.block_store
(Block (hash, distance))
let read_block_metadata_opt ?distance chain_store hash =
let open Lwt_syntax in
let* r = read_block_metadata ?distance chain_store hash in
match r with Ok v -> Lwt.return v | Error _ -> Lwt.return_none
let get_block_metadata_opt chain_store block =
let open Lwt_syntax in
match Block_repr.metadata block with
| Some metadata -> Lwt.return_some metadata
| None -> (
let* o = read_block_metadata_opt chain_store block.hash in
match o with
| Some metadata ->
block.metadata <- Some metadata ;
Lwt.return_some metadata
| None -> Lwt.return_none)
let get_block_metadata chain_store block =
let open Lwt_result_syntax in
let*! o = get_block_metadata_opt chain_store block in
match o with
| Some metadata -> return metadata
| None -> tzfail (Block_metadata_not_found (Block_repr.hash block))
let read_block_opt chain_store ?(distance = 0) hash =
let open Lwt_syntax in
let* r = read_block chain_store ~distance hash in
match r with
| Ok block -> Lwt.return_some block
| Error _ -> Lwt.return_none
let read_predecessor chain_store block =
read_block chain_store (Block_repr.predecessor block)
let read_predecessor_opt chain_store block =
let open Lwt_syntax in
let* r = read_predecessor chain_store block in
match r with
| Ok block -> Lwt.return_some block
| Error _ -> Lwt.return_none
let read_ancestor_hash chain_store ~distance hash =
read_ancestor_hash chain_store ~distance hash
let read_ancestor_hash_opt chain_store ~distance hash =
let open Lwt_syntax in
let* r = read_ancestor_hash chain_store ~distance hash in
match r with Ok v -> Lwt.return v | Error _ -> Lwt.return_none
let read_predecessor_of_hash_opt chain_store hash =
let open Lwt_syntax in
let* o = read_ancestor_hash_opt chain_store ~distance:1 hash in
match o with
| Some hash -> read_block_opt chain_store hash
| None -> Lwt.return_none
let read_predecessor_of_hash chain_store hash =
let open Lwt_result_syntax in
let*! o = read_predecessor_of_hash_opt chain_store hash in
match o with
| Some b -> return b
| None -> tzfail @@ Block_not_found {hash; distance = 0}
let locked_read_block_by_level chain_store head level =
let open Lwt_result_syntax in
let distance = Int32.(to_int (sub (Block_repr.level head) level)) in
if distance < 0 then
tzfail
(Bad_level
{
head_level = Block_repr.level head;
given_level = Int32.of_int distance;
})
else read_block chain_store ~distance (Block_repr.hash head)
let locked_read_block_by_level_opt chain_store head level =
let open Lwt_syntax in
let* r = locked_read_block_by_level chain_store head level in
match r with Error _ -> Lwt.return_none | Ok b -> Lwt.return_some b
let read_block_by_level chain_store level =
let open Lwt_syntax in
let* current_head = current_head chain_store in
locked_read_block_by_level chain_store current_head level
let read_block_by_level_opt chain_store level =
let open Lwt_syntax in
let* current_head = current_head chain_store in
locked_read_block_by_level_opt chain_store current_head level
let read_validated_block_opt {chain_state; _} hash =
Shared.use chain_state (fun {validated_blocks; _} ->
Option.value ~default:Lwt.return_none
@@ Block_lru_cache.bind validated_blocks hash Lwt.return)
let read_validated_block chain_store hash =
let open Lwt_result_syntax in
let*! o = read_validated_block_opt chain_store hash in
match o with
| Some b -> return b
| None -> tzfail (Block_not_found {hash; distance = 0})
let check_metadata_list ~block_hash ~operations ~ops_metadata =
fail_unless
(List.for_all2
~when_different_lengths:(`X "unreachable")
(fun l1 l2 -> Compare.List_lengths.(l1 = l2))
operations
ops_metadata
|> function
| Ok b -> b
| _ -> assert false)
(let to_string l =
Format.asprintf
"[%a]"
(Format.pp_print_list
~pp_sep:(fun fmt () -> Format.fprintf fmt "; ")
(fun ppf l -> Format.fprintf ppf "[%d]" (List.length l)))
l
in
Cannot_store_block
( block_hash,
Inconsistent_operations_lengths
{
operations_lengths = to_string operations;
operations_data_lengths = to_string ops_metadata;
} ))
let store_block chain_store ~ ~operations validation_result =
let open Lwt_result_syntax in
let {
Block_validation.validation_store =
{
resulting_context_hash;
timestamp = _;
message;
max_operations_ttl;
last_allowed_fork_level;
};
block_metadata;
ops_metadata;
shell_header_hash = _;
} =
validation_result
in
let bytes = Block_header.to_bytes block_header in
let hash = Block_header.hash_raw bytes in
let operations_length = List.length operations in
let operation_metadata_length =
match ops_metadata with
| Block_validation.No_metadata_hash x -> List.length x
| Block_validation.Metadata_hash x -> List.length x
in
let validation_passes = block_header.shell.validation_passes in
let* () =
fail_unless
(validation_passes = operations_length)
(Cannot_store_block
( hash,
Invalid_operations_length
{validation_passes; operations = operations_length} ))
in
let* () =
fail_unless
(validation_passes = operation_metadata_length)
(Cannot_store_block
( hash,
Invalid_operations_length
{validation_passes; operations = operation_metadata_length} ))
in
let* () =
match ops_metadata with
| No_metadata_hash ops_metadata ->
check_metadata_list ~block_hash:hash ~operations ~ops_metadata
| Metadata_hash ops_metadata ->
check_metadata_list ~block_hash:hash ~operations ~ops_metadata
in
let*! genesis_block = Stored_data.get chain_store.genesis_block_data in
let is_main_chain =
Chain_id.equal
chain_store.chain_id
(WithExceptions.Option.get
~loc:__LOC__
chain_store.global_store.main_chain_store)
.chain_id
in
let genesis_level = Block_repr.level genesis_block in
let* last_allowed_fork_level =
if is_main_chain then
let* () =
fail_unless
Compare.Int32.(last_allowed_fork_level >= genesis_level)
(Cannot_store_block
( hash,
Invalid_last_allowed_fork_level
{last_allowed_fork_level; genesis_level} ))
in
return last_allowed_fork_level
else if Compare.Int32.(last_allowed_fork_level < genesis_level) then
return genesis_level
else return last_allowed_fork_level
in
let*! b = is_known_valid chain_store hash in
match b with
| true -> return_none
| false ->
let*! acceptable_block, known_invalid =
Shared.use chain_store.chain_state (fun chain_state ->
let*! acceptable_block =
locked_is_acceptable_block
chain_state
(hash, block_header.shell.level)
in
let*! known_invalid = locked_is_known_invalid chain_state hash in
Lwt.return (acceptable_block, known_invalid))
in
let* () =
fail_unless
acceptable_block
(Validation_errors.Checkpoint_error (hash, None))
in
let* () =
fail_when
known_invalid
Store_errors.(Cannot_store_block (hash, Invalid_block))
in
let contents =
{
Block_repr.header = block_header;
operations;
block_metadata_hash = snd block_metadata;
operations_metadata_hashes =
(match ops_metadata with
| Block_validation.No_metadata_hash _ -> None
| Block_validation.Metadata_hash ops_metadata ->
Some (List.map (List.map snd) ops_metadata));
}
in
let metadata =
Some
{
message;
max_operations_ttl;
last_allowed_fork_level;
block_metadata = fst block_metadata;
operations_metadata =
(match ops_metadata with
| Block_validation.No_metadata_hash ops_metadata -> ops_metadata
| Block_validation.Metadata_hash ops_metadata ->
List.map (List.map fst) ops_metadata);
}
in
let block = {Block_repr.hash; contents; metadata} in
let* () =
Block_store.store_block
chain_store.block_store
block
resulting_context_hash
in
let*! () =
Store_events.(emit store_block) (hash, block_header.shell.level)
in
let*! () =
Shared.use chain_store.chain_state (fun {validated_blocks; _} ->
Block_lru_cache.remove validated_blocks hash ;
Lwt.return_unit)
in
Lwt_watcher.notify chain_store.block_watcher block ;
Lwt_watcher.notify
chain_store.global_store.global_block_watcher
(chain_store, block) ;
return_some block
let store_validated_block chain_store ~hash ~ ~operations =
let open Lwt_result_syntax in
let operations_length = List.length operations in
let validation_passes = block_header.Block_header.shell.validation_passes in
let* () =
fail_unless
(validation_passes = operations_length)
(Cannot_store_block
( hash,
Invalid_operations_length
{validation_passes; operations = operations_length} ))
in
let block =
{
Block_repr.hash;
contents =
{
header = block_header;
operations;
block_metadata_hash = None;
operations_metadata_hashes = None;
};
metadata = None;
}
in
let*! () =
Shared.use chain_store.chain_state (fun {validated_blocks; _} ->
Block_lru_cache.put validated_blocks hash (Lwt.return_some block) ;
Lwt.return_unit)
in
let*! () =
Store_events.(emit store_validated_block) (hash, block_header.shell.level)
in
Lwt_watcher.notify chain_store.validated_block_watcher block ;
return_unit
let resulting_context_hash chain_store block =
let open Lwt_result_syntax in
let fetch_expect_predecessor_context () =
expect_predecessor_context_hash
chain_store
~protocol_level:(Block_repr.proto_level block)
in
let hash = Block_repr.hash block in
let* resulting_context_hash_opt =
Block_store.resulting_context_hash
~fetch_expect_predecessor_context
chain_store.block_store
(Block (hash, 0))
in
match resulting_context_hash_opt with
| None ->
tzfail
(Resulting_context_hash_not_found
{hash; level = Block_repr.level block})
| Some resulting_context_hash -> return resulting_context_hash
let context_exn chain_store block =
let open Lwt_syntax in
let context_index = chain_store.global_store.context_index in
let fetch_expect_predecessor_context () =
let* expect_pred_context_opt =
expect_predecessor_context_hash
chain_store
~protocol_level:(Block_repr.proto_level block)
in
match expect_pred_context_opt with
| Ok expect_pred_context -> Lwt.return_ok expect_pred_context
| Error _ ->
Format.kasprintf
Stdlib.failwith
"cannot find the resulting context of block %a"
pp_block_descriptor
(Block_repr.descriptor block)
in
let* context_to_checkout =
let* r =
Block_store.resulting_context_hash
chain_store.block_store
~fetch_expect_predecessor_context
(Block (Block_repr.hash block, 0))
in
match r with
| Ok (Some resulting_context) -> return resulting_context
| Ok None | Error _ ->
Format.kasprintf
Stdlib.failwith
"cannot find the resulting context of block %a"
pp_block_descriptor
(Block_repr.descriptor block)
in
Context_ops.checkout_exn context_index context_to_checkout
let context_opt chain_store block =
let open Lwt_syntax in
Lwt.catch
(fun () ->
let* ctxt = context_exn chain_store block in
return_some ctxt)
(fun _exn -> Lwt.return_none)
let context chain_store block =
let open Lwt_result_syntax in
let*! o = context_opt chain_store block in
match o with
| Some context -> return context
| None ->
tzfail
(Cannot_checkout_context
(Block_repr.hash block, Block_repr.context block))
let context_exists chain_store block =
let context_index = chain_store.global_store.context_index in
Context_ops.exists context_index (Block_repr.context block)
let testchain_status chain_store block =
let open Lwt_result_syntax in
let* context =
let*! o = context_opt chain_store block in
match o with
| Some ctxt -> return ctxt
| None ->
tzfail
(Cannot_checkout_context
(Block_repr.hash block, Block_repr.context block))
in
let*! status = Context_ops.get_test_chain context in
match status with
| Running {genesis; _} ->
Shared.use chain_store.chain_state (fun chain_state ->
let*! forked_chains =
Stored_data.get chain_state.forked_chains_data
in
let testchain_id = Context.compute_testchain_chain_id genesis in
let forked_hash_opt =
Chain_id.Map.find testchain_id forked_chains
in
return (status, forked_hash_opt))
| Forking _ -> return (status, Some (Block_repr.hash block))
| Not_running -> return (status, None)
let protocol_hash chain_store block =
let open Lwt_result_syntax in
Shared.use chain_store.chain_state (fun chain_state ->
let*! protocol_levels =
Stored_data.get chain_state.protocol_levels_data
in
let open Protocol_levels in
let proto_level = Block_repr.proto_level block in
match find proto_level protocol_levels with
| Some {protocol; _} -> return protocol
| None -> tzfail (Cannot_find_protocol proto_level))
let protocol_hash_exn chain_store block =
let open Lwt_syntax in
let* r = protocol_hash chain_store block in
match r with Ok ph -> Lwt.return ph | Error _ -> Lwt.fail Not_found
(** Operations on invalid blocks *)
let read_invalid_block_opt {chain_state; _} hash =
let open Lwt_syntax in
Shared.use chain_state (fun chain_state ->
let* invalid_blocks = Stored_data.get chain_state.invalid_blocks_data in
Lwt.return (Block_hash.Map.find hash invalid_blocks))
let read_invalid_blocks {chain_state; _} =
Shared.use chain_state (fun chain_state ->
Stored_data.get chain_state.invalid_blocks_data)
let mark_invalid chain_store hash ~level errors =
let open Lwt_result_syntax in
if is_genesis chain_store hash then tzfail Invalid_genesis_marking
else
let* () =
Shared.use chain_store.chain_state (fun chain_state ->
Stored_data.update_with
chain_state.invalid_blocks_data
(fun invalid_blocks ->
Lwt.return
(Block_hash.Map.add hash {level; errors} invalid_blocks)))
in
return_unit
let unmark_invalid {chain_state; _} hash =
Shared.use chain_state (fun chain_state ->
Stored_data.update_with
chain_state.invalid_blocks_data
(fun invalid_blocks ->
Lwt.return (Block_hash.Map.remove hash invalid_blocks)))
(** Accessors *)
let hash blk = Block_repr.hash blk
let blk = Block_repr.header blk
let operations blk = Block_repr.operations blk
let blk = Block_repr.shell_header blk
let level blk = Block_repr.level blk
let proto_level blk = Block_repr.proto_level blk
let predecessor blk = Block_repr.predecessor blk
let timestamp blk = Block_repr.timestamp blk
let operations_hash blk = Block_repr.operations_hash blk
let validation_passes blk = Block_repr.validation_passes blk
let fitness blk = Block_repr.fitness blk
let context_hash blk = Block_repr.context blk
let protocol_data blk = Block_repr.protocol_data blk
let block_metadata_hash blk = Block_repr.block_metadata_hash blk
let operations_metadata_hashes blk = Block_repr.operations_metadata_hashes blk
let operations_metadata_hashes_path block i =
if i < 0 || (header block).shell.validation_passes <= i then
invalid_arg "operations_metadata_hashes_path" ;
Option.map
(fun ll -> List.nth ll i |> WithExceptions.Option.get ~loc:__LOC__)
(Block_repr.operations_metadata_hashes block)
let all_operations_metadata_hash blk =
if validation_passes blk = 0 then None
else
Option.map
(fun ll ->
Operation_metadata_list_list_hash.compute
(List.map Operation_metadata_list_hash.compute ll))
(Block_repr.operations_metadata_hashes blk)
(** Metadata accessors *)
let message metadata = Block_repr.message metadata
let max_operations_ttl metadata = Block_repr.max_operations_ttl metadata
let last_allowed_fork_level metadata =
Block_repr.last_allowed_fork_level metadata
let block_metadata metadata = Block_repr.block_metadata metadata
let operations_metadata metadata = Block_repr.operations_metadata metadata
let compute_operation_path hashes =
let list_hashes = List.map Operation_list_hash.compute hashes in
Operation_list_list_hash.compute_path list_hashes
let operations_path block i =
if i < 0 || validation_passes block <= i then invalid_arg "operations_path" ;
let ops = operations block in
let hashes = List.(map (map Operation.hash)) ops in
let path = compute_operation_path hashes in
(List.nth ops i |> WithExceptions.Option.get ~loc:__LOC__, path i)
let operations_hashes_path block i =
if i < 0 || (header block).shell.validation_passes <= i then
invalid_arg "operations_hashes_path" ;
let opss = operations block in
let hashes = List.(map (map Operation.hash)) opss in
let path = compute_operation_path hashes in
(List.nth hashes i |> WithExceptions.Option.get ~loc:__LOC__, path i)
let all_operation_hashes block =
List.(map (map Operation.hash)) (operations block)
end
module Chain_traversal = struct
let path chain_store ~from_block ~to_block =
let open Lwt_syntax in
if not Compare.Int32.(Block.level from_block <= Block.level to_block) then
invalid_arg "Chain_traversal.path" ;
let rec loop acc current =
if Block.equal from_block current then Lwt.return_some acc
else
let* o = Block.read_predecessor_opt chain_store current in
match o with
| Some pred -> loop (current :: acc) pred
| None -> Lwt.return_none
in
loop [] to_block
let common_ancestor chain_store b1 b2 =
let open Lwt_syntax in
let rec loop b1 b2 =
if Block.equal b1 b2 then Lwt.return_some b1
else if Compare.Int32.(Block.level b1 <= Block.level b2) then
let* o = Block.read_predecessor_opt chain_store b2 in
match o with None -> Lwt.return_none | Some b2 -> loop b1 b2
else
let* o = Block.read_predecessor_opt chain_store b1 in
match o with None -> Lwt.return_none | Some b1 -> loop b1 b2
in
loop b1 b2
let new_blocks chain_store ~from_block ~to_block =
let open Lwt_syntax in
let* o = common_ancestor chain_store from_block to_block in
match o with
| None -> assert false
| Some ancestor -> (
let* o = path chain_store ~from_block:ancestor ~to_block in
match o with
| None -> Lwt.return (ancestor, [])
| Some path -> Lwt.return (ancestor, path))
let folder chain_store block n f init =
let open Lwt_syntax in
let rec loop acc block_head n =
let hashes = Block.all_operation_hashes block_head in
let acc = f acc (Block.hash block_head, hashes) in
if n = 0 then Lwt.return acc
else
let* o = Block.read_predecessor_opt chain_store block_head in
match o with
| None -> Lwt.return acc
| Some predecessor -> loop acc predecessor (pred n)
in
loop init block n
let live_blocks chain_store block n =
let fold (bacc, oacc) (head_hash, op_hashes) =
let bacc = Block_hash.Set.add head_hash bacc in
let oacc =
List.fold_left
(List.fold_left (fun oacc op -> Operation_hash.Set.add op oacc))
oacc
op_hashes
in
(bacc, oacc)
in
let init = (Block_hash.Set.empty, Operation_hash.Set.empty) in
folder chain_store block n fold init
let live_blocks_with_ring chain_store block n ring =
let open Lwt_syntax in
let fold acc (head_hash, op_hashes) =
let op_hash_set = Operation_hash.Set.(of_list (List.flatten op_hashes)) in
(head_hash, op_hash_set) :: acc
in
let* l = folder chain_store block n fold [] in
Ringo.Ring.add_list ring l ;
Lwt.return_unit
end
module Chain = struct
type nonrec chain_store = chain_store
type t = chain_store
type nonrec testchain = testchain
type block_identifier = Block_services.block
let global_store {global_store; _} = global_store
let chain_id chain_store = chain_store.chain_id
let chain_dir chain_store = chain_store.chain_dir
let history_mode chain_store = history_mode chain_store
let set_history_mode chain_store history_mode =
let chain_config = {chain_store.chain_config with history_mode} in
Stored_data.write_file
(Naming.chain_config_file chain_store.chain_dir)
chain_config
let genesis chain_store = genesis chain_store
let genesis_block chain_store = Stored_data.get chain_store.genesis_block_data
let expiration chain_store = chain_store.chain_config.expiration
let checkpoint chain_store = checkpoint chain_store
let target chain_store = target chain_store
let savepoint chain_store = savepoint chain_store
let unsafe_set_savepoint chain_store new_savepoint =
Block_store.write_savepoint chain_store.block_store new_savepoint
let caboose chain_store = caboose chain_store
let unsafe_set_caboose chain_store new_caboose =
Block_store.write_caboose chain_store.block_store new_caboose
let current_head chain_store = current_head chain_store
let mempool chain_store =
Shared.use chain_store.chain_state (fun {mempool; _} -> Lwt.return mempool)
let block_of_identifier chain_store =
let open Lwt_result_syntax in
let not_found () = fail_with_exn Not_found in
function
| `Genesis ->
let*! block = genesis_block chain_store in
return block
| `Head n ->
let*! current_head = current_head chain_store in
if n < 0 then not_found ()
else if n = 0 then return current_head
else Block.read_block chain_store ~distance:n (Block.hash current_head)
| (`Alias (_, n) | `Hash (_, n)) as b ->
let*! hash =
match b with
| `Alias (`Checkpoint, _) ->
let*! t = checkpoint chain_store in
Lwt.return @@ fst t
| `Alias (`Savepoint, _) ->
let*! t = savepoint chain_store in
Lwt.return @@ fst t
| `Alias (`Caboose, _) ->
let*! t = caboose chain_store in
Lwt.return @@ fst t
| `Hash (h, _) -> Lwt.return h
in
if n < 0 then
let* block = Block.read_block chain_store hash in
let*! current_head = current_head chain_store in
let head_level = Block.level current_head in
let block_level = Block.level block in
let distance =
Int32.(to_int (sub head_level (sub block_level (of_int n))))
in
if distance < 0 then not_found ()
else Block.read_block chain_store ~distance (Block.hash current_head)
else Block.read_block chain_store ~distance:n hash
| `Level i ->
if Compare.Int32.(i < 0l) then not_found ()
else Block.read_block_by_level chain_store i
let block_of_identifier_opt chain_store identifier =
let open Lwt_syntax in
let* r = block_of_identifier chain_store identifier in
match r with
| Ok block -> Lwt.return_some block
| Error _ -> Lwt.return_none
let set_mempool chain_store ~head mempool =
let open Lwt_result_syntax in
Shared.update_with chain_store.chain_state (fun chain_state ->
let*! current_head_descr =
Stored_data.get chain_state.current_head_data
in
if Block_hash.equal head (fst current_head_descr) then
return (Some {chain_state with mempool}, ())
else return (None, ()))
let live_blocks chain_store =
Shared.use chain_store.chain_state (fun {live_blocks; live_operations; _} ->
Lwt.return (live_blocks, live_operations))
let locked_compute_live_blocks ?(force = false) ?(update_cache = true)
chain_store chain_state block metadata =
let open Lwt_syntax in
let {current_head; live_blocks; live_operations; live_data_cache; _} =
chain_state
in
if Block.equal current_head block && not force then
Lwt.return (live_blocks, live_operations)
else
let expected_capacity = Block.max_operations_ttl metadata + 1 in
match live_data_cache with
| Some live_data_cache
when update_cache
&& Block_hash.equal
(Block.predecessor block)
(Block.hash current_head)
&& Ringo.Ring.capacity live_data_cache = expected_capacity -> (
let most_recent_block = Block.hash block in
let most_recent_ops =
Block.all_operation_hashes block
|> List.flatten |> Operation_hash.Set.of_list
in
let new_live_blocks =
Block_hash.Set.add most_recent_block live_blocks
in
let new_live_operations =
Operation_hash.Set.union most_recent_ops live_operations
in
match
Ringo.Ring.add_and_return_erased
live_data_cache
(most_recent_block, most_recent_ops)
with
| None -> Lwt.return (new_live_blocks, new_live_operations)
| Some (last_block, last_ops) ->
let diffed_new_live_blocks =
Block_hash.Set.remove last_block new_live_blocks
in
let diffed_new_live_operations =
Operation_hash.Set.diff new_live_operations last_ops
in
Lwt.return (diffed_new_live_blocks, diffed_new_live_operations))
| _ when update_cache ->
let new_cache = Ringo.Ring.create expected_capacity in
let* () =
Chain_traversal.live_blocks_with_ring
chain_store
block
expected_capacity
new_cache
in
chain_state.live_data_cache <- Some new_cache ;
let live_blocks, live_ops =
Ringo.Ring.fold
new_cache
~init:(Block_hash.Set.empty, Operation_hash.Set.empty)
~f:(fun (bhs, opss) (bh, ops) ->
(Block_hash.Set.add bh bhs, Operation_hash.Set.union ops opss))
in
Lwt.return (live_blocks, live_ops)
| _ -> Chain_traversal.live_blocks chain_store block expected_capacity
let compute_live_blocks chain_store ~block =
let open Lwt_result_syntax in
Shared.use chain_store.chain_state (fun chain_state ->
let* metadata = Block.get_block_metadata chain_store block in
let*! r =
locked_compute_live_blocks
~update_cache:false
chain_store
chain_state
block
metadata
in
return r)
let is_ancestor chain_store ~head:(hash, lvl) ~ancestor:(hash', lvl') =
let open Lwt_syntax in
if Compare.Int32.(lvl' > lvl) then Lwt.return_false
else if Compare.Int32.(lvl = lvl') then
Lwt.return (Block_hash.equal hash hash')
else
let* o =
Block.read_ancestor_hash_opt
chain_store
hash
~distance:Int32.(to_int (sub lvl lvl'))
in
match o with
| None -> Lwt.return_false
| Some hash_found -> Lwt.return (Block_hash.equal hash' hash_found)
let is_in_chain chain_store (hash, level) =
let open Lwt_syntax in
let* current_head = current_head chain_store in
is_ancestor
chain_store
~head:Block.(hash current_head, level current_head)
~ancestor:(hash, level)
let max_locator_size = 200
let compute_locator_from_hash chain_store ?(max_size = max_locator_size)
?min_level (head_hash, ) seed =
let open Lwt_syntax in
let* caboose, _ =
Shared.use chain_store.chain_state (fun chain_state ->
match min_level with
| None -> Block_store.caboose chain_store.block_store
| Some min_level -> (
let* o =
Block.locked_read_block_by_level_opt
chain_store
chain_state.current_head
min_level
in
match o with
| None ->
Block_store.caboose chain_store.block_store
| Some b -> Lwt.return (Block_repr.descriptor b)))
in
let get_predecessor =
match min_level with
| None ->
fun h n -> Block.read_ancestor_hash_opt chain_store h ~distance:n
| Some min_level -> (
fun h n ->
let* o = Block.read_block_opt chain_store h ~distance:n in
match o with
| None -> Lwt.return_none
| Some pred ->
if Compare.Int32.(Block_repr.level pred < min_level) then
Lwt.return_none
else Lwt.return_some (Block_repr.hash pred))
in
Block_locator.compute
~get_predecessor
~caboose
~size:max_size
head_hash
head_header
seed
let compute_locator chain_store ?(max_size = 200) head seed =
let open Lwt_syntax in
let* caboose, _caboose_level = caboose chain_store in
Block_locator.compute
~get_predecessor:(fun h n ->
Block.read_ancestor_hash_opt chain_store h ~distance:n)
~caboose
~size:max_size
head.Block_repr.hash
head.Block_repr.contents.header
seed
let compute_protocol_locator chain_store ?max_size ~proto_level seed =
let open Lwt_syntax in
let* o =
Shared.use chain_store.chain_state (fun chain_state ->
let* protocol_levels =
Stored_data.get chain_state.protocol_levels_data
in
match Protocol_levels.find proto_level protocol_levels with
| None -> Lwt.return_none
| Some {activation_block; _} -> (
let block_activation_level = snd activation_block in
let head_proto_level =
Block_repr.proto_level chain_state.current_head
in
if Compare.Int.(proto_level = head_proto_level) then
Lwt.return_some
( block_activation_level,
Block_repr.
( hash chain_state.current_head,
header chain_state.current_head ) )
else
match
Protocol_levels.find (succ proto_level) protocol_levels
with
| None -> Lwt.return_none
| Some {activation_block; _} -> (
let next_activation_level = snd activation_block in
let last_level_in_protocol =
Int32.(pred next_activation_level)
in
let* o =
Block.locked_read_block_by_level_opt
chain_store
chain_state.current_head
last_level_in_protocol
in
match o with
| None -> Lwt.return_none
| Some pred ->
Lwt.return_some
( block_activation_level,
Block_repr.(hash pred, header pred) ))))
in
match o with
| None -> Lwt.return_none
| Some (block_activation_level, upper_block) ->
let* l =
compute_locator_from_hash
chain_store
?max_size
~min_level:block_activation_level
upper_block
seed
in
Lwt.return_some l
let merge_finalizer chain_store (new_highest_cemented_level : int32) =
let open Lwt_syntax in
Shared.locked_use chain_store.chain_state (fun chain_state ->
let* current_cementing_highwatermark =
Stored_data.get chain_state.cementing_highwatermark_data
in
match current_cementing_highwatermark with
| None ->
Stored_data.write
chain_state.cementing_highwatermark_data
(Some new_highest_cemented_level)
| Some current_cementing_highwatermark ->
if
Compare.Int32.(
current_cementing_highwatermark > new_highest_cemented_level)
then
return_ok_unit
else
Stored_data.write
chain_state.cementing_highwatermark_data
(Some new_highest_cemented_level))
let may_update_checkpoint_and_target chain_store ~new_head ~new_head_lafl
~checkpoint ~target =
let open Lwt_result_syntax in
let new_checkpoint =
if Compare.Int32.(snd new_head_lafl > snd checkpoint) then new_head_lafl
else checkpoint
in
match target with
| None -> return (new_checkpoint, None)
| Some target ->
if Compare.Int32.(snd target < snd new_checkpoint) then assert false
else if Compare.Int32.(snd target <= snd new_head) then
let*! b = is_ancestor chain_store ~head:new_head ~ancestor:target in
match b with
| true -> return (new_checkpoint, None)
| false ->
tzfail Target_mismatch
else return (new_checkpoint, Some target)
let locked_determine_cementing_highwatermark chain_store chain_state head_lafl
=
let open Lwt_syntax in
let* cementing_highwatermark =
Stored_data.get chain_state.cementing_highwatermark_data
in
match cementing_highwatermark with
| Some cementing_highwatermark -> Lwt.return_some cementing_highwatermark
| None -> (
let block_store = chain_store.block_store in
let cemented_store = Block_store.cemented_block_store block_store in
match
Cemented_block_store.get_highest_cemented_level cemented_store
with
| Some hcb ->
Lwt.return_some hcb
| None ->
let* _, caboose_level = Block_store.caboose block_store in
if Compare.Int32.(head_lafl >= caboose_level) then
Lwt.return_some head_lafl
else Lwt.return_none)
let locked_may_update_cementing_highwatermark chain_state
new_cementing_highwatermark =
let open Lwt_syntax in
let* o = Stored_data.get chain_state.cementing_highwatermark_data in
match o with
| None when new_cementing_highwatermark <> None ->
Stored_data.write
chain_state.cementing_highwatermark_data
new_cementing_highwatermark
| _ -> return_ok_unit
let write_checkpoint chain_state new_checkpoint =
let open Lwt_result_syntax in
let* () = Stored_data.write chain_state.checkpoint_data new_checkpoint in
let*! () = Store_events.(emit set_checkpoint) new_checkpoint in
Prometheus.Gauge.set
Store_metrics.metrics.checkpoint_level
(Int32.to_float (snd new_checkpoint)) ;
return_unit
let may_split_context chain_store new_head_lafl previous_head =
let open Lwt_result_syntax in
match history_mode chain_store with
| Archive -> return_unit
| Full _ | Rolling _ ->
let* previous_head_metadata =
Block.get_block_metadata chain_store previous_head
in
if
not
(Int32.equal
new_head_lafl
(Block.last_allowed_fork_level previous_head_metadata))
then
let block_store = chain_store.block_store in
Block_store.split_context block_store new_head_lafl
else return_unit
let set_head chain_store new_head =
let open Lwt_result_syntax in
Shared.update_with chain_store.chain_state (fun chain_state ->
let*! store_status = Block_store.status chain_store.block_store in
let* is_merge_ongoing =
match Block_store.get_merge_status chain_store.block_store with
| Merge_failed errs ->
let*! () = Store_events.(emit notify_merge_error errs) in
return_true
| Not_running when store_status <> Idle ->
let*! () = Store_events.(emit notify_merge_error []) in
return_true
| Not_running -> return_false
| Running -> return_true
in
let previous_head = chain_state.current_head in
let*! checkpoint = Stored_data.get chain_state.checkpoint_data in
let new_head_descr = Block.descriptor new_head in
let* () =
fail_unless
Compare.Int32.(Block.level new_head >= snd checkpoint)
(Invalid_head_switch
{checkpoint_level = snd checkpoint; given_head = new_head_descr})
in
let predecessor = Block.predecessor new_head in
let* new_head_metadata =
trace
Bad_head_invariant
(let* pred_block = Block.read_block chain_store predecessor in
let* _pred_head_metadata =
Block.get_block_metadata chain_store pred_block
in
Block.get_block_metadata chain_store new_head)
in
let*! target = Stored_data.get chain_state.target_data in
let new_head_lafl = Block.last_allowed_fork_level new_head_metadata in
let* () = may_split_context chain_store new_head_lafl previous_head in
let*! cementing_highwatermark =
locked_determine_cementing_highwatermark
chain_store
chain_state
new_head_lafl
in
let* () =
locked_may_update_cementing_highwatermark
chain_state
cementing_highwatermark
in
let*! lafl_block_opt =
Block.locked_read_block_by_level_opt
chain_store
new_head
new_head_lafl
in
let* new_checkpoint, new_target =
match lafl_block_opt with
| None ->
return (checkpoint, target)
| Some lafl_block ->
may_update_checkpoint_and_target
chain_store
~new_head:new_head_descr
~new_head_lafl:(Block.descriptor lafl_block)
~checkpoint
~target
in
let should_merge =
(not is_merge_ongoing)
&&
match cementing_highwatermark with
| None ->
false
| Some cementing_highwatermark ->
Compare.Int32.(new_head_lafl > cementing_highwatermark)
in
let* new_cementing_highwatermark =
if should_merge then
let*! b = try_lock_for_write chain_store.lockfile in
match b with
| false ->
return cementing_highwatermark
| true ->
let finalizer new_highest_cemented_level =
let* () =
merge_finalizer chain_store new_highest_cemented_level
in
let*! () = may_unlock chain_store.lockfile in
return_unit
in
let on_error errs =
let*! () = may_unlock chain_store.lockfile in
Lwt.return (Error errs)
in
let* () =
Block_store.merge_stores
chain_store.block_store
~on_error
~finalizer
~history_mode:(history_mode chain_store)
~new_head
~new_head_metadata
~cementing_highwatermark:
(WithExceptions.Option.get
~loc:__LOC__
cementing_highwatermark)
in
return (Some new_head_lafl)
else return cementing_highwatermark
in
let*! new_checkpoint =
match new_cementing_highwatermark with
| None -> Lwt.return new_checkpoint
| Some new_cementing_highwatermark -> (
if
Compare.Int32.(
snd new_checkpoint >= new_cementing_highwatermark)
then Lwt.return new_checkpoint
else
let*! o =
read_ancestor_hash_by_level
chain_store
new_head
new_cementing_highwatermark
in
match o with
| None -> Lwt.return new_checkpoint
| Some h -> Lwt.return (h, new_cementing_highwatermark))
in
let* () =
if Compare.Int32.(snd new_checkpoint > snd checkpoint) then
let* () =
Stored_data.update_with
chain_state.invalid_blocks_data
(fun invalid_blocks ->
Lwt.return
(Block_hash.Map.filter
(fun _k {level; _} -> level > snd new_checkpoint)
invalid_blocks))
in
write_checkpoint chain_state new_checkpoint
else return_unit
in
let* () =
Stored_data.write chain_state.current_head_data new_head_descr
in
let* () = Stored_data.write chain_state.target_data new_target in
let*! live_blocks, live_operations =
locked_compute_live_blocks
~update_cache:true
chain_store
chain_state
new_head
new_head_metadata
in
let new_chain_state =
{
chain_state with
live_blocks;
live_operations;
current_head = new_head;
}
in
let*! () = Store_events.(emit set_head) new_head_descr in
return (Some new_chain_state, previous_head))
let set_target chain_store new_target =
let open Lwt_result_syntax in
let*! () = Block_store.await_merging chain_store.block_store in
Shared.use chain_store.chain_state (fun chain_state ->
let*! checkpoint = Stored_data.get chain_state.checkpoint_data in
if Compare.Int32.(snd checkpoint > snd new_target) then
let*! b =
is_ancestor chain_store ~head:checkpoint ~ancestor:new_target
in
match b with
| true -> return_unit
| false -> tzfail (Cannot_set_target new_target)
else
let*! b = Block.is_known_valid chain_store (fst new_target) in
match b with
| false -> (
let*! b =
Block.locked_is_known_invalid chain_state (fst new_target)
in
match b with
| true -> tzfail (Cannot_set_target new_target)
| false ->
let* () =
Stored_data.write chain_state.target_data (Some new_target)
in
let*! () = Store_events.(emit set_target) new_target in
return_unit)
| true ->
trace
(Cannot_set_target new_target)
(let*! current_head_descr =
Stored_data.get chain_state.current_head_data
in
let*! is_target_an_ancestor_of_current_head =
is_ancestor
chain_store
~head:current_head_descr
~ancestor:new_target
in
let* new_current_head, new_checkpoint =
if is_target_an_ancestor_of_current_head then
return (current_head_descr, new_target)
else
let* target_block =
Block.read_block chain_store (fst new_target)
in
return (Block.descriptor target_block, new_target)
in
let* () =
Stored_data.write
chain_state.current_head_data
new_current_head
in
let* () =
Stored_data.write chain_state.checkpoint_data new_checkpoint
in
Stored_data.write chain_state.target_data None))
let is_acceptable_block chain_store block_descr =
Shared.use chain_store.chain_state (fun chain_state ->
locked_is_acceptable_block chain_state block_descr)
let create_testchain_genesis_block ~genesis_hash ~ =
let = genesis_header in
let contents =
{
Block_repr.header;
operations = [];
block_metadata_hash = None;
operations_metadata_hashes = None;
}
in
let metadata =
Some
{
Block_repr.message = Some "Genesis";
max_operations_ttl = 0;
last_allowed_fork_level = genesis_header.shell.level;
block_metadata = Bytes.create 0;
operations_metadata = [];
}
in
{Block_repr.hash = genesis_hash; contents; metadata}
let create_chain_state ?target ~genesis_block ~genesis_protocol chain_dir =
let open Lwt_result_syntax in
let genesis_proto_level = Block_repr.proto_level genesis_block in
let ((_, genesis_level) as genesis_descr) =
Block_repr.descriptor genesis_block
in
let cementing_highwatermark =
Option.fold
~none:0l
~some:(fun metadata -> Block.last_allowed_fork_level metadata)
(Block_repr.metadata genesis_block)
in
let activation_block = genesis_descr in
let* expect_predecessor_context =
let open Lwt_result_syntax in
let* (module Proto) = Registered_protocol.get_result genesis_protocol in
return (Proto.expected_context_hash = Predecessor_resulting_context)
in
let* protocol_levels_data =
Stored_data.init
(Naming.protocol_levels_file chain_dir)
~initial_data:
Protocol_levels.(
add
genesis_proto_level
{
protocol = genesis_protocol;
activation_block;
expect_predecessor_context;
}
empty)
in
let* current_head_data =
Stored_data.init
(Naming.current_head_file chain_dir)
~initial_data:genesis_descr
in
let* cementing_highwatermark_data =
Stored_data.init
(Naming.cementing_highwatermark_file chain_dir)
~initial_data:(Some cementing_highwatermark)
in
let* checkpoint_data =
Stored_data.init
(Naming.checkpoint_file chain_dir)
~initial_data:(genesis_block.hash, genesis_level)
in
let* target_data =
Stored_data.init (Naming.target_file chain_dir) ~initial_data:target
in
let* invalid_blocks_data =
Stored_data.init
(Naming.invalid_blocks_file chain_dir)
~initial_data:Block_hash.Map.empty
in
let* forked_chains_data =
Stored_data.init
(Naming.forked_chains_file chain_dir)
~initial_data:Chain_id.Map.empty
in
let current_head = genesis_block in
let active_testchain = None in
let mempool = Mempool.empty in
let live_blocks = Block_hash.Set.singleton genesis_block.hash in
let live_operations = Operation_hash.Set.empty in
let live_data_cache = None in
let validated_blocks = Block_lru_cache.create 10 in
return
{
current_head_data;
cementing_highwatermark_data;
target_data;
checkpoint_data;
protocol_levels_data;
invalid_blocks_data;
forked_chains_data;
active_testchain;
current_head;
mempool;
live_blocks;
live_operations;
live_data_cache;
validated_blocks;
}
let may_update_cementing_highwatermark_data block_store
cementing_highwatermark_data =
let open Lwt_syntax in
let* cementing_highwatermark =
Stored_data.get cementing_highwatermark_data
in
let cemented_store = Block_store.cemented_block_store block_store in
match
( Cemented_block_store.get_highest_cemented_level cemented_store,
cementing_highwatermark )
with
| None, (Some _ | None) -> return_ok_unit
| Some highest_cemented_level, None ->
Stored_data.write
cementing_highwatermark_data
(Some highest_cemented_level)
| Some highest_cemented_level, Some cementing_highwatermark ->
if Compare.Int32.(highest_cemented_level > cementing_highwatermark) then
Stored_data.write
cementing_highwatermark_data
(Some highest_cemented_level)
else return_ok_unit
let load_chain_state chain_dir block_store =
let open Lwt_result_syntax in
let* protocol_levels_data =
Stored_data.load (Naming.protocol_levels_file chain_dir)
in
let* current_head_data =
Stored_data.load (Naming.current_head_file chain_dir)
in
let* cementing_highwatermark_data =
Stored_data.load (Naming.cementing_highwatermark_file chain_dir)
in
let* () =
may_update_cementing_highwatermark_data
block_store
cementing_highwatermark_data
in
let* checkpoint_data =
Stored_data.load (Naming.checkpoint_file chain_dir)
in
let*! _, checkpoint_level = Stored_data.get checkpoint_data in
Prometheus.Gauge.set
Store_metrics.metrics.checkpoint_level
(Int32.to_float checkpoint_level) ;
let* target_data = Stored_data.load (Naming.target_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*! current_head_hash, _ = Stored_data.get current_head_data in
let* o =
Block_store.read_block
~read_metadata:true
block_store
(Block (current_head_hash, 0))
in
match o with
| None -> failwith "load_store: cannot read head"
| Some current_head ->
let active_testchain = None in
let mempool = Mempool.empty in
let live_blocks = Block_hash.Set.empty in
let live_operations = Operation_hash.Set.empty in
let live_data_cache = None in
let validated_blocks = Block_lru_cache.create 10 in
return
{
current_head_data;
cementing_highwatermark_data;
target_data;
checkpoint_data;
protocol_levels_data;
invalid_blocks_data;
forked_chains_data;
current_head;
active_testchain;
mempool;
live_blocks;
live_operations;
live_data_cache;
validated_blocks;
}
let create_chain_store ?block_cache_limit global_store chain_dir ?target
~chain_id ?(expiration = None) ?genesis_block ~genesis ~genesis_context
history_mode =
let open Lwt_result_syntax in
let genesis_block =
match genesis_block with
| None -> Block_repr.create_genesis_block ~genesis genesis_context
| Some genesis_block -> genesis_block
in
let* block_store =
Block_store.create ?block_cache_limit chain_dir ~genesis_block
in
let chain_config = {history_mode; genesis; expiration} in
let* () =
Stored_data.write_file (Naming.chain_config_file chain_dir) chain_config
in
let* chain_state =
create_chain_state
chain_dir
?target
~genesis_block
~genesis_protocol:genesis.Genesis.protocol
in
let* genesis_block_data =
Stored_data.init
(Naming.genesis_block_file chain_dir)
~initial_data:genesis_block
in
let chain_state = Shared.create chain_state in
let block_watcher = Lwt_watcher.create_input () in
let validated_block_watcher = Lwt_watcher.create_input () in
let block_rpc_directories = Protocol_hash.Table.create 7 in
let* lockfile = create_lockfile chain_dir in
let chain_store : chain_store =
{
global_store;
chain_id;
chain_dir;
chain_config;
chain_state;
genesis_block_data;
block_store;
block_watcher;
validated_block_watcher;
block_rpc_directories;
lockfile;
}
in
return chain_store
let load_chain_store ?block_cache_limit global_store chain_dir ~chain_id
~readonly =
let open Lwt_result_syntax in
let* chain_config_data =
Stored_data.load (Naming.chain_config_file chain_dir)
in
let*! chain_config = Stored_data.get chain_config_data in
let* genesis_block_data =
Stored_data.load (Naming.genesis_block_file chain_dir)
in
let*! genesis_block = Stored_data.get genesis_block_data in
let* block_store =
Block_store.load ?block_cache_limit chain_dir ~genesis_block ~readonly
in
let* chain_state = load_chain_state chain_dir block_store in
let chain_state = Shared.create chain_state in
let block_watcher = Lwt_watcher.create_input () in
let validated_block_watcher = Lwt_watcher.create_input () in
let block_rpc_directories = Protocol_hash.Table.create 7 in
let* lockfile = create_lockfile chain_dir in
let chain_store =
{
global_store;
chain_id;
chain_dir;
chain_config;
block_store;
chain_state;
genesis_block_data;
block_watcher;
validated_block_watcher;
block_rpc_directories;
lockfile;
}
in
let*! head = current_head chain_store in
let*! o = Block.get_block_metadata_opt chain_store head in
match o with
| None -> tzfail Inconsistent_chain_store
| Some metadata ->
Shared.update_with chain_state (fun chain_state ->
let*! live_blocks, live_operations =
locked_compute_live_blocks
~force:true
~update_cache:true
chain_store
chain_state
head
metadata
in
return
(Some {chain_state with live_blocks; live_operations}, chain_store))
let close_chain_store chain_store =
let open Lwt_syntax in
Lwt_watcher.shutdown_input chain_store.block_watcher ;
let rec loop = function
| {block_store; lockfile; chain_state; _} ->
let* () = Block_store.close block_store in
Shared.locked_use chain_state (fun {active_testchain; _} ->
let* () =
match active_testchain with
| Some {testchain_store; _} -> loop testchain_store
| None -> Lwt.return_unit
in
let* () = may_unlock chain_store.lockfile in
let* _ = Lwt_utils_unix.safe_close lockfile in
Lwt.return_unit)
in
loop chain_store
let testchain chain_store =
Shared.use chain_store.chain_state (fun {active_testchain; _} ->
Lwt.return active_testchain)
let testchain_forked_block {forked_block; _} = forked_block
let testchain_store {testchain_store; _} = testchain_store
let locked_load_testchain chain_store chain_state ~chain_id =
let open Lwt_result_syntax in
let {forked_chains_data; active_testchain; _} = chain_state in
match active_testchain with
| Some testchain
when Chain_id.equal chain_id testchain.testchain_store.chain_id ->
return_some testchain
| _ -> (
let chain_dir = chain_store.chain_dir in
let testchains_dir = Naming.testchains_dir chain_dir in
let testchain_dir = Naming.chain_dir testchains_dir chain_id in
let*! forked_chains = Stored_data.get forked_chains_data in
match Chain_id.Map.find chain_id forked_chains with
| None -> return_none
| Some forked_block ->
let* testchain_store =
load_chain_store
chain_store.global_store
testchain_dir
~chain_id
~readonly:false
in
let testchain = {forked_block; testchain_store} in
return_some testchain)
let fork_testchain chain_store ~testchain_id ~forked_block ~genesis_hash
~ ~test_protocol ~expiration =
let open Lwt_result_syntax in
let forked_block_hash = Block.hash forked_block in
let genesis_hash' = Context.compute_testchain_genesis forked_block_hash in
assert (Block_hash.equal genesis_hash genesis_hash') ;
let* () =
fail_unless
chain_store.global_store.allow_testchains
Fork_testchain_not_allowed
in
Shared.update_with
chain_store.chain_state
(fun ({active_testchain; _} as chain_state) ->
match active_testchain with
| Some ({testchain_store; forked_block} as testchain) ->
if Chain_id.equal testchain_store.chain_id testchain_id then (
assert (Block_hash.equal forked_block forked_block_hash) ;
return (None, testchain))
else tzfail (Cannot_fork_testchain testchain_id)
| None ->
let chain_dir = chain_store.chain_dir in
let testchains_dir = Naming.testchains_dir chain_dir in
let testchain_dir = Naming.chain_dir testchains_dir testchain_id in
let testchain_dir_path = Naming.dir_path testchains_dir in
let*! valid_testchain_dir_path =
Lwt_utils_unix.dir_exists testchain_dir_path
in
if valid_testchain_dir_path then
let* o =
locked_load_testchain
chain_store
chain_state
~chain_id:testchain_id
in
match o with
| None -> tzfail (Cannot_load_testchain testchain_dir_path)
| Some testchain ->
return
( Some {chain_state with active_testchain = Some testchain},
testchain )
else
let history_mode = history_mode chain_store in
let genesis_block =
create_testchain_genesis_block ~genesis_hash ~genesis_header
in
let genesis =
{
Genesis.block = genesis_hash;
time = Block.timestamp genesis_block;
protocol = test_protocol;
}
in
let genesis_context = Block.context_hash genesis_block in
let* testchain_store =
create_chain_store
chain_store.global_store
testchain_dir
~chain_id:testchain_id
~expiration:(Some expiration)
~genesis_block
~genesis
~genesis_context
history_mode
in
let* () =
Stored_data.update_with
chain_state.forked_chains_data
(fun forked_chains ->
Lwt.return
(Chain_id.Map.add
testchain_id
forked_block_hash
forked_chains))
in
let*! () =
Store_events.(emit fork_testchain)
( testchain_id,
test_protocol,
genesis_hash,
Block.descriptor forked_block )
in
let testchain =
{forked_block = forked_block_hash; testchain_store}
in
return
( Some {chain_state with active_testchain = Some testchain},
testchain ))
let load_testchain chain_store ~chain_id =
Shared.locked_use chain_store.chain_state (fun chain_state ->
locked_load_testchain chain_store chain_state ~chain_id)
let shutdown_testchain chain_store =
let open Lwt_syntax in
Shared.update_with
chain_store.chain_state
(fun ({active_testchain; _} as chain_state) ->
match active_testchain with
| Some testchain ->
let* () = close_chain_store testchain.testchain_store in
return_ok (Some {chain_state with active_testchain = None}, ())
| None -> return_ok (None, ()))
let find_protocol_info chain_store ~protocol_level =
find_protocol_info chain_store ~protocol_level
let find_activation_block chain_store ~protocol_level =
find_activation_block chain_store ~protocol_level
let find_protocol chain_store ~protocol_level =
find_protocol chain_store ~protocol_level
let expect_predecessor_context_hash chain_store ~protocol_level =
expect_predecessor_context_hash chain_store ~protocol_level
let set_protocol_level chain_store ~protocol_level
(block, protocol_hash, expect_predecessor_context) =
let open Lwt_result_syntax in
Shared.locked_use chain_store.chain_state (fun {protocol_levels_data; _} ->
let* () =
Stored_data.update_with protocol_levels_data (fun protocol_levels ->
let activation_block = Block.descriptor block in
Lwt.return
Protocol_levels.(
add
protocol_level
{
protocol = protocol_hash;
activation_block;
expect_predecessor_context;
}
protocol_levels))
in
let*! () =
Store_events.(
emit
update_protocol_table
( protocol_hash,
protocol_level,
Block.hash block,
Block.level block ))
in
return_unit)
let may_update_protocol_level chain_store ?pred ?protocol_level
~expect_predecessor_context (block, protocol_hash) =
let open Lwt_result_syntax in
let* pred =
match pred with
| None -> Block.read_predecessor chain_store block
| Some pred -> return pred
in
let prev_proto_level = Block.proto_level pred in
let protocol_level =
Option.value ~default:(Block.proto_level block) protocol_level
in
if Compare.Int.(prev_proto_level < protocol_level) then
let*! o = find_activation_block chain_store ~protocol_level in
match o with
| Some (bh, _) ->
if Block_hash.(bh <> Block.hash block) then
set_protocol_level
chain_store
~protocol_level
(block, protocol_hash, expect_predecessor_context)
else return_unit
| None ->
set_protocol_level
chain_store
~protocol_level
(block, protocol_hash, expect_predecessor_context)
else return_unit
let may_update_ancestor_protocol_level chain_store ~head =
let open Lwt_result_syntax in
let head_proto_level = Block.proto_level head in
let*! o = find_protocol_info chain_store ~protocol_level:head_proto_level in
match o with
| None ->
let*! _, savepoint_level = savepoint chain_store in
let rec find_activation_block lower_bound block =
let*! pred = Block.read_predecessor_opt chain_store block in
match pred with
| None -> return block
| Some pred ->
let pred_proto_level = Block.proto_level pred in
if Compare.Int.(pred_proto_level <= Int.pred head_proto_level)
then return block
else if Compare.Int32.(Block.level pred <= lower_bound) then
return pred
else find_activation_block lower_bound pred
in
let* activation_block = find_activation_block savepoint_level head in
let protocol_level = Block.proto_level head in
let* context = Block.context chain_store head in
let*! activated_protocol = Context_ops.get_protocol context in
let* (module Proto) =
Registered_protocol.get_result activated_protocol
in
let expected_context_hash =
Proto.expected_context_hash = Predecessor_resulting_context
in
set_protocol_level
chain_store
~protocol_level
(activation_block, activated_protocol, expected_context_hash)
| Some
{Protocol_levels.protocol; activation_block; expect_predecessor_context}
-> (
let activation_block_level = snd activation_block in
let*! _, savepoint_level = savepoint chain_store in
if Compare.Int32.(savepoint_level > activation_block_level) then
return_unit
else
let*! b =
is_ancestor
chain_store
~head:(Block.descriptor head)
~ancestor:activation_block
in
match b with
| true -> return_unit
| false -> (
let distance =
Int32.(sub (Block.level head) activation_block_level |> to_int)
in
let*! o =
Block.read_block_opt chain_store ~distance (Block.hash head)
in
match o with
| None -> return_unit
| Some ancestor ->
may_update_protocol_level
chain_store
(ancestor, protocol)
~expect_predecessor_context))
let all_protocol_levels chain_store =
Shared.use chain_store.chain_state (fun {protocol_levels_data; _} ->
Stored_data.get protocol_levels_data)
let validated_watcher chain_store =
Lwt_watcher.create_stream chain_store.validated_block_watcher
let watcher chain_store = Lwt_watcher.create_stream chain_store.block_watcher
let get_rpc_directory chain_store block =
let open Lwt_syntax in
let* o = Block.read_predecessor_opt chain_store block in
match o with
| None -> Lwt.return_none
| Some pred when Block_hash.equal (Block.hash pred) (Block.hash block) ->
Lwt.return_none
| Some pred -> (
let* _, save_point_level = savepoint chain_store in
let* protocol =
if Compare.Int32.(Block.level pred < save_point_level) then
let* o =
find_protocol_info
chain_store
~protocol_level:(Block.proto_level pred)
in
match o with
| Some {Protocol_levels.protocol; _} -> Lwt.return protocol
| None -> Lwt.fail Not_found
else Block.protocol_hash_exn chain_store pred
in
match
Protocol_hash.Table.find chain_store.block_rpc_directories protocol
with
| None -> Lwt.return_none
| Some map ->
let* next_protocol = Block.protocol_hash_exn chain_store block in
Lwt.return (Protocol_hash.Map.find next_protocol map))
let set_rpc_directory chain_store ~protocol_hash ~next_protocol_hash dir =
let map =
Option.value
~default:Protocol_hash.Map.empty
(Protocol_hash.Table.find
chain_store.block_rpc_directories
protocol_hash)
in
Protocol_hash.Table.replace
chain_store.block_rpc_directories
protocol_hash
(Protocol_hash.Map.add next_protocol_hash dir map) ;
Lwt.return_unit
let register_gc_callback chain_store callback =
Block_store.register_gc_callback chain_store.block_store callback
let register_split_callback chain_store callback =
Block_store.register_split_callback chain_store.block_store callback
end
module Protocol = struct
let all {protocol_store; _} = Protocol_store.all protocol_store
let store {protocol_store; protocol_watcher; _} protocol_hash protocol =
let open Lwt_syntax in
let* o = Protocol_store.store protocol_store protocol_hash protocol in
match o with
| None -> Lwt.return_none
| p ->
Lwt_watcher.notify protocol_watcher protocol_hash ;
Lwt.return p
let store_raw {protocol_store; protocol_watcher; _} protocol_hash raw_protocol
=
let open Lwt_syntax in
let* o =
Protocol_store.raw_store protocol_store protocol_hash raw_protocol
in
match o with
| None -> Lwt.return_none
| p ->
Lwt_watcher.notify protocol_watcher protocol_hash ;
Lwt.return p
let read {protocol_store; _} protocol_hash =
Protocol_store.read protocol_store protocol_hash
let mem {protocol_store; _} protocol_hash =
Protocol_store.mem protocol_store protocol_hash
let protocol_watcher {protocol_watcher; _} =
Lwt_watcher.create_stream protocol_watcher
end
let create_store ?block_cache_limit ~context_index ~chain_id ~genesis
~genesis_context ?(history_mode = History_mode.default) ~allow_testchains
store_dir =
let open Lwt_result_syntax in
let store_dir_path = Naming.dir_path store_dir in
let*! () = Lwt_utils_unix.create_dir store_dir_path in
let*! protocol_store = Protocol_store.init store_dir in
let protocol_watcher = Lwt_watcher.create_input () in
let global_block_watcher = Lwt_watcher.create_input () in
let chain_dir = Naming.chain_dir store_dir chain_id in
let global_store =
{
store_dir;
context_index;
main_chain_store = None;
protocol_store;
allow_testchains;
protocol_watcher;
global_block_watcher;
}
in
let* main_chain_store =
Chain.create_chain_store
?block_cache_limit
global_store
chain_dir
~chain_id
~expiration:None
~genesis
~genesis_context
history_mode
in
global_store.main_chain_store <- Some main_chain_store ;
return global_store
let load_store ?history_mode ?block_cache_limit store_dir ~context_index
~genesis ~chain_id ~allow_testchains ~readonly () =
let open Lwt_result_syntax in
let chain_dir = Naming.chain_dir store_dir chain_id in
let* () =
protect
(fun () ->
let* () = Consistency.check_consistency chain_dir genesis in
let*! () = Store_events.(emit store_is_consistent ()) in
return_unit)
~on_error:(function
| err
when List.exists
(function
| Store_errors.Corrupted_store _ -> true | _ -> false)
err
|| readonly ->
Lwt.return_error err
| err ->
let*! () = Store_events.(emit inconsistent_store err) in
let* () =
Consistency.fix_consistency
chain_dir
context_index
genesis
?history_mode
in
let*! () = Store_events.(emit store_was_fixed ()) in
return_unit)
in
let*! protocol_store = Protocol_store.init store_dir in
let protocol_watcher = Lwt_watcher.create_input () in
let global_block_watcher = Lwt_watcher.create_input () in
let global_store =
{
store_dir;
context_index = Context_ops.Disk_index context_index;
main_chain_store = None;
protocol_store;
allow_testchains;
protocol_watcher;
global_block_watcher;
}
in
let* main_chain_store =
Chain.load_chain_store
?block_cache_limit
global_store
chain_dir
~chain_id
~readonly
in
let stored_genesis = Chain.genesis main_chain_store in
let* () =
fail_unless
(Block_hash.equal genesis.Genesis.block stored_genesis.block)
(Inconsistent_genesis
{expected = stored_genesis.block; got = genesis.block})
in
global_store.main_chain_store <- Some main_chain_store ;
return global_store
let main_chain_store store =
WithExceptions.Option.get ~loc:__LOC__ store.main_chain_store
let check_history_mode_consistency chain_dir history_mode =
let open Lwt_result_syntax in
match history_mode with
| None -> return_unit
| Some history_mode ->
let chain_config_path = Naming.chain_config_file chain_dir in
let*! chain_config_path_exists =
Lwt_unix.file_exists (Naming.encoded_file_path chain_config_path)
in
if chain_config_path_exists then
let* chain_config_data = Stored_data.load chain_config_path in
let*! chain_config = Stored_data.get chain_config_data in
let stored_history_mode = chain_config.history_mode in
fail_unless
(History_mode.equal history_mode stored_history_mode)
(Cannot_switch_history_mode
{previous_mode = stored_history_mode; next_mode = history_mode})
else return_unit
let init ?patch_context ?commit_genesis ?history_mode ?(readonly = false)
?block_cache_limit ~store_dir ~context_dir ~allow_testchains genesis =
let open Lwt_result_syntax in
let patch_context =
Option.map
(fun f ctxt ->
let open Tezos_shell_context in
let ctxt = Shell_context.wrap_disk_context ctxt in
let+ ctxt = f ctxt in
Shell_context.unwrap_disk_context ctxt)
patch_context
in
let store_dir = Naming.store_dir ~dir_path:store_dir in
let chain_id = Chain_id.of_block_hash genesis.Genesis.block in
let chain_dir = Naming.chain_dir store_dir chain_id in
let* () = check_history_mode_consistency chain_dir history_mode in
let*! context_index, commit_genesis =
match commit_genesis with
| Some commit_genesis ->
let*! context_index =
Context.init ~readonly:true ?patch_context context_dir
in
Lwt.return (context_index, commit_genesis)
| None ->
let*! context_index =
Context.init ~readonly ?patch_context context_dir
in
let commit_genesis ~chain_id =
Context.commit_genesis
context_index
~chain_id
~time:genesis.time
~protocol:genesis.protocol
in
Lwt.return (context_index, commit_genesis)
in
let chain_dir_path = Naming.dir_path chain_dir in
let*! valid_chain_dir_path = Lwt_utils_unix.dir_exists chain_dir_path in
let* store =
if valid_chain_dir_path then
load_store
?history_mode
?block_cache_limit
store_dir
~context_index
~genesis
~chain_id
~allow_testchains
~readonly
()
else
let* genesis_context = commit_genesis ~chain_id in
create_store
?block_cache_limit
store_dir
~context_index:(Context_ops.Disk_index context_index)
~chain_id
~genesis
~genesis_context
?history_mode
~allow_testchains
in
let main_chain_store = main_chain_store store in
let*! () =
if
(not (Chain.history_mode main_chain_store = Archive))
&& not (Context.is_gc_allowed context_index)
then Store_events.(emit context_gc_is_not_allowed) ()
else Lwt.return_unit
in
let invalid_blocks_collector () =
let*! invalid_blocks =
Shared.use main_chain_store.chain_state (fun state ->
Stored_data.get state.invalid_blocks_data)
in
Lwt.return @@ float_of_int @@ Block_hash.Map.cardinal invalid_blocks
in
Store_metrics.set_invalid_blocks_collector invalid_blocks_collector ;
return store
let close_store global_store =
let open Lwt_syntax in
Lwt_watcher.shutdown_input global_store.protocol_watcher ;
Lwt_watcher.shutdown_input global_store.global_block_watcher ;
let main_chain_store =
WithExceptions.Option.get ~loc:__LOC__ global_store.main_chain_store
in
let* () = Chain.close_chain_store main_chain_store in
Context_ops.close global_store.context_index
let may_switch_history_mode ~store_dir ~context_dir genesis ~new_history_mode =
let open Lwt_result_syntax in
let store_dir = Naming.store_dir ~dir_path:store_dir in
let chain_id = Chain_id.of_block_hash genesis.Genesis.block in
let chain_dir = Naming.chain_dir store_dir chain_id in
let chain_dir_path = Naming.dir_path chain_dir in
let*! valid_chain_dir_path = Lwt_utils_unix.dir_exists chain_dir_path in
if not valid_chain_dir_path then
return_unit
else
let*! context_index = Context.init ~readonly:false context_dir in
let* store =
load_store
store_dir
~context_index
~genesis
~chain_id
~allow_testchains:true
~readonly:false
()
in
let chain_store = main_chain_store store in
Lwt.finalize
(fun () ->
let block_store = chain_store.block_store in
let*! current_head = Chain.current_head chain_store in
let previous_history_mode = Chain.history_mode chain_store in
if History_mode.equal previous_history_mode new_history_mode then
return_unit
else
let is_valid_switch =
match (previous_history_mode, new_history_mode) with
| (Full n, Full m | Rolling n, Rolling m) when n = m -> false
| Archive, Full _
| Archive, Rolling _
| Full _, Full _
| Full _, Rolling _
| Rolling _, Rolling _ ->
true
| _ ->
false
in
let* () =
fail_unless
is_valid_switch
(Cannot_switch_history_mode
{
previous_mode = previous_history_mode;
next_mode = new_history_mode;
})
in
let*! () = lock_for_write chain_store.lockfile in
let* () =
Block_store.switch_history_mode
block_store
~current_head
~previous_history_mode
~new_history_mode
in
let* () = Chain.set_history_mode chain_store new_history_mode in
let*! () =
Store_events.(
emit switch_history_mode (previous_history_mode, new_history_mode))
in
return_unit)
(fun () ->
let*! () = unlock chain_store.lockfile in
close_store store)
let get_chain_store store chain_id =
let chain_store = main_chain_store store in
let rec loop chain_store =
let open Lwt_result_syntax in
if Chain_id.equal (Chain.chain_id chain_store) chain_id then
return chain_store
else
Shared.use chain_store.chain_state (fun {active_testchain; _} ->
match active_testchain with
| None -> tzfail (Validation_errors.Unknown_chain chain_id)
| Some {testchain_store; _} -> loop testchain_store)
in
loop chain_store
let get_chain_store_opt store chain_id =
let open Lwt_syntax in
let* r = get_chain_store store chain_id in
match r with
| Ok chain_store -> Lwt.return_some chain_store
| Error _ -> Lwt.return_none
let all_chain_stores store =
let chain_store = main_chain_store store in
let rec loop acc chain_store =
let acc = chain_store :: acc in
Shared.use chain_store.chain_state (fun {active_testchain; _} ->
match active_testchain with
| None -> Lwt.return acc
| Some {testchain_store; _} -> loop acc testchain_store)
in
loop [] chain_store
let directory store = store.store_dir
let context_index store = store.context_index
let allow_testchains {allow_testchains; _} = allow_testchains
let global_block_watcher {global_block_watcher; _} =
Lwt_watcher.create_stream global_block_watcher
let option_pp ~default pp fmt = function
| None -> Format.fprintf fmt "%s" default
| Some x -> Format.fprintf fmt "%a" pp x
let rec make_pp_chain_store (chain_store : chain_store) =
let open Lwt_syntax in
let {chain_id; chain_dir; chain_config; chain_state; block_store; _} =
chain_store
in
let chain_config_json =
Data_encoding.Json.construct chain_config_encoding chain_config
in
let* ( current_head,
cementing_highwatermark,
target,
checkpoint,
caboose,
savepoint,
first_block_in_floating,
merge_status,
highest_cemented_level,
lowest_cemented_level,
protocol_levels_data,
invalid_blocks_data,
forked_chains_data,
active_test_chain ) =
Shared.locked_use
chain_state
(fun
{
current_head;
cementing_highwatermark_data;
target_data;
checkpoint_data;
protocol_levels_data;
invalid_blocks_data;
forked_chains_data;
active_testchain;
_;
}
->
let* cementing_highwatermark =
Stored_data.get cementing_highwatermark_data
in
let* target = Stored_data.get target_data in
let* checkpoint = Stored_data.get checkpoint_data in
let* protocol_levels = Stored_data.get protocol_levels_data in
let* invalid_blocks = Stored_data.get invalid_blocks_data in
let* forked_chains = Stored_data.get forked_chains_data in
let* savepoint = Block_store.savepoint block_store in
let* caboose = Block_store.caboose block_store in
let highest_cemented_level =
Cemented_block_store.get_highest_cemented_level
(Block_store.cemented_block_store block_store)
in
let lowest_cemented_level =
Cemented_block_store.get_lowest_cemented_level
(Block_store.cemented_block_store block_store)
in
let exception First of Block_repr.t in
let* first_block_in_floating =
Lwt.catch
(fun () ->
let find_store kind' =
let floating_stores =
Block_store.floating_block_stores block_store
in
List.find
(fun floating_store ->
Floating_block_store.(kind floating_store = kind'))
floating_stores
|> WithExceptions.Option.get ~loc:__LOC__
in
let ro_store = find_store Floating_block_store.RO in
let* _ =
Floating_block_store.iter_s
(fun block -> Lwt.fail (First block))
ro_store
in
let rw_store = find_store Floating_block_store.RW in
let* _ =
Floating_block_store.iter_s
(fun block -> Lwt.fail (First block))
rw_store
in
assert false)
(function
| First b -> Lwt.return b
| _exn ->
assert false)
in
Lwt.return
( current_head,
cementing_highwatermark,
target,
checkpoint,
caboose,
savepoint,
first_block_in_floating,
Block_store.get_merge_status block_store,
highest_cemented_level,
lowest_cemented_level,
protocol_levels,
invalid_blocks,
forked_chains,
active_testchain ))
in
let pp_proto_info fmt
(proto_level, {Protocol_levels.protocol; activation_block; _}) =
Format.fprintf
fmt
"proto level: %d, transition block: %a, protocol: %a"
proto_level
pp_block_descriptor
activation_block
Protocol_hash.pp
protocol
in
let make_pp_test_chain_opt = function
| None -> Lwt.return (fun fmt () -> Format.fprintf fmt "n/a")
| Some {testchain_store; _} ->
let* pp = make_pp_chain_store testchain_store in
Lwt.return (fun fmt () -> Format.fprintf fmt "@ %a" pp ())
in
let* pp_testchain_opt = make_pp_test_chain_opt active_test_chain in
Lwt.return (fun fmt () ->
Format.fprintf
fmt
"@[<v 2>chain id: %a@ chain directory: %s@ chain config: %a@ current \
head: %a@ checkpoint: %a@ cementing highwatermark: %a@ savepoint: %a@ \
caboose: %a@ first block in floating: %a@ interval of cemented \
blocks: [%a, %a]@ merge status: %a@ target: %a@ @[<v 2>protocol \
levels:@ %a@]@ @[<v 2>invalid blocks:@ %a@]@ @[<v 2>forked chains:@ \
%a@]@ @[<v 2>active testchain: %a@]@]"
Chain_id.pp
chain_id
(Naming.dir_path chain_dir)
Data_encoding.Json.pp
chain_config_json
(fun fmt block ->
let metadata =
WithExceptions.Option.get ~loc:__LOC__ (Block_repr.metadata block)
in
Format.fprintf
fmt
"%a (lafl: %ld) (max_op_ttl: %d)"
pp_block_descriptor
(Block.descriptor block)
(Block.last_allowed_fork_level metadata)
(Block.max_operations_ttl metadata))
current_head
pp_block_descriptor
checkpoint
(fun fmt opt ->
option_pp
~default:"n/a"
(fun fmt i -> Format.fprintf fmt "%ld" i)
fmt
opt)
cementing_highwatermark
pp_block_descriptor
savepoint
pp_block_descriptor
caboose
pp_block_descriptor
(Block.descriptor first_block_in_floating)
(option_pp ~default:"n/a" (fun fmt i -> Format.fprintf fmt "%ld" i))
lowest_cemented_level
(option_pp ~default:"n/a" (fun fmt i -> Format.fprintf fmt "%ld" i))
highest_cemented_level
Block_store.pp_merge_status
merge_status
(option_pp ~default:"n/a" pp_block_descriptor)
target
(Format.pp_print_list ~pp_sep:Format.pp_print_cut pp_proto_info)
(Protocol_levels.bindings protocol_levels_data)
(Format.pp_print_list ~pp_sep:Format.pp_print_cut Block_hash.pp)
(Block_hash.Map.bindings invalid_blocks_data |> List.map fst)
(Format.pp_print_list
~pp_sep:Format.pp_print_cut
(fun fmt (chain_id, block_hash) ->
Format.fprintf
fmt
"testchain's chain id: %a, forked block: %a"
Chain_id.pp
chain_id
Block_hash.pp
block_hash))
(Chain_id.Map.bindings forked_chains_data)
pp_testchain_opt
())
let make_pp_store (store : store) =
let open Lwt_syntax in
let {store_dir; allow_testchains; main_chain_store; _} = store in
let* pp_testchain_store =
make_pp_chain_store
(WithExceptions.Option.get ~loc:__LOC__ main_chain_store)
in
Lwt.return (fun fmt () ->
Format.fprintf
fmt
"@[<v 2>Store state:@ store directory: %s@ allow testchains: %b@ @[<v \
2>main chain:@ %a@]@])"
(Naming.dir_path store_dir)
allow_testchains
pp_testchain_store
())
let upgrade_protocol_levels ~chain_dir ~cleanups ~finalizers =
let open Lwt_result_syntax in
let cleanup ~tmp_protocol_levels_path ~protocol_levels_path =
let*! exists = Lwt_unix.file_exists tmp_protocol_levels_path in
if exists then Lwt_unix.rename tmp_protocol_levels_path protocol_levels_path
else Lwt.return_unit
in
let protocol_levels_path =
Naming.legacy_protocol_levels_file chain_dir |> Naming.encoded_file_path
in
let tmp_protocol_levels_path = protocol_levels_path ^ ".tmp" in
let*! () = cleanup ~tmp_protocol_levels_path ~protocol_levels_path in
let* legacy_protocol_levels_data =
Stored_data.load (Naming.legacy_protocol_levels_file chain_dir)
in
let*! legacy_protocol_levels = Stored_data.get legacy_protocol_levels_data in
let bindings = Protocol_levels.Legacy.bindings legacy_protocol_levels in
let*! protocol_levels =
List.fold_left_s
(fun map
( level,
(legacy_activation_block : Protocol_levels.Legacy.activation_block)
) ->
let protocol_info =
Protocol_levels.
{
protocol = legacy_activation_block.protocol;
activation_block = legacy_activation_block.block;
expect_predecessor_context =
false
;
}
in
Lwt.return (Protocol_levels.add level protocol_info map))
Protocol_levels.empty
bindings
in
cleanups :=
(fun () -> cleanup ~tmp_protocol_levels_path ~protocol_levels_path)
:: !cleanups ;
finalizers :=
(fun () ->
let*! () =
Lwt_unix.rename protocol_levels_path tmp_protocol_levels_path
in
let*! _unit_error =
Stored_data.write_file
(Naming.protocol_levels_file chain_dir)
protocol_levels
in
let*! () = Lwt_unix.unlink tmp_protocol_levels_path in
Lwt.return_unit)
:: !finalizers ;
return_unit
let v_3_0_upgrade ~store_dir genesis =
let open Lwt_result_syntax in
let*! () = Store_events.(emit upgrade_store_started ()) in
let cleanups : (unit -> unit Lwt.t) list ref = ref [] in
let finalizers : (unit -> unit Lwt.t) list ref = ref [] in
let chain_id = Chain_id.of_block_hash genesis.Genesis.block in
let chain_dir =
Naming.chain_dir (Naming.store_dir ~dir_path:store_dir) chain_id
in
protect
~on_error:(fun err ->
let*! () = Store_events.(emit upgrade_store_failed) () in
let*! () = List.iter_s (fun f -> f ()) !cleanups in
Lwt.return_error err)
(fun () ->
let* () =
let chain_dir_path = Naming.dir_path chain_dir in
let*! chain_dir_exists = Lwt_unix.file_exists chain_dir_path in
fail_unless chain_dir_exists (Cannot_find_chain_dir chain_dir_path)
in
let* () = upgrade_protocol_levels ~chain_dir ~cleanups ~finalizers in
let* () = Block_store.v_3_0_upgrade chain_dir ~cleanups ~finalizers in
let*! () = List.iter_s (fun f -> f ()) !finalizers in
return_unit)
module Unsafe = struct
let repr_of_block b = b
let block_of_repr b = b
let get_block_store chain_store = chain_store.block_store
let set_head chain_store new_head =
let open Lwt_result_syntax in
Shared.update_with chain_store.chain_state (fun chain_state ->
let* () =
Stored_data.write
chain_state.current_head_data
(Block.descriptor new_head)
in
return (Some {chain_state with current_head = new_head}, ()))
let set_checkpoint chain_store new_checkpoint =
Shared.use chain_store.chain_state (fun chain_state ->
Stored_data.write chain_state.checkpoint_data new_checkpoint)
let set_cementing_highwatermark chain_store new_cementing_highwatermark =
Shared.use chain_store.chain_state (fun chain_state ->
Stored_data.write
chain_state.cementing_highwatermark_data
new_cementing_highwatermark)
let set_history_mode = Chain.set_history_mode
let set_savepoint chain_store new_savepoint =
Chain.unsafe_set_savepoint chain_store new_savepoint
let set_caboose chain_store new_caboose =
Chain.unsafe_set_caboose chain_store new_caboose
let set_protocol_level chain_store ~protocol_level (b, ph, epc) =
Chain.set_protocol_level chain_store ~protocol_level (b, ph, epc)
let load_testchain = Chain.load_testchain
let open_for_snapshot_export ~store_dir ~context_dir genesis
~(locked_f : chain_store -> 'a tzresult Lwt.t) =
let open Lwt_result_syntax in
let store_dir = Naming.store_dir ~dir_path:store_dir in
let chain_id = Chain_id.of_block_hash genesis.Genesis.block in
let chain_dir = Naming.chain_dir store_dir chain_id in
let* lockfile = create_lockfile chain_dir in
let*! () = lock_for_read lockfile in
protect
(fun () ->
let*! context_index = Context.init ~readonly:true context_dir in
let*! fd =
Lwt_unix.openfile
(Naming.gc_lockfile chain_dir |> Naming.file_path)
[Unix.O_CREAT; O_RDWR; O_CLOEXEC; O_SYNC]
0o644
in
let*! is_locked =
Lwt.catch
(fun () ->
let*! () = Lwt_unix.lockf fd Unix.F_TEST 0o644 in
Lwt.return_false)
(fun (_ : exn) -> Lwt.return_true)
in
let*! () =
Lwt.finalize
(fun () ->
if not is_locked then Lwt.return_unit
else
Animation.three_dots
~progress_display_mode:Auto
~msg:
"The storage is locked by a context prunning. Waiting for \
it to finish before exporting the snapshot"
@@ fun () -> Lwt_unix.lockf fd Unix.F_RLOCK 0o644)
(fun () -> Lwt_unix.close fd)
in
let* store =
load_store
store_dir
~context_index
~genesis
~chain_id
~allow_testchains:false
~readonly:true
()
in
let chain_store = main_chain_store store in
Lwt.finalize
(fun () -> locked_f chain_store)
(fun () ->
let*! () = may_unlock lockfile in
let*! () = Lwt_unix.close lockfile in
close_store store))
~on_error:(fun errs ->
let*! () = may_unlock lockfile in
Lwt.return (Error errs))
let restore_from_snapshot ?(notify = fun () -> Lwt.return_unit) store_dir
~genesis ~genesis_context_hash ~floating_blocks_stream
~new_head_with_metadata ~new_head_resulting_context_hash
~ ~protocol_levels ~history_mode =
let open Lwt_result_syntax in
let chain_id = Chain_id.of_block_hash genesis.Genesis.block in
let chain_dir = Naming.chain_dir store_dir chain_id in
let genesis_block =
Block_repr.create_genesis_block ~genesis genesis_context_hash
in
let new_head_descr =
( Block_repr.hash new_head_with_metadata,
Block_repr.level new_head_with_metadata )
in
let* () =
Stored_data.write_file
(Naming.protocol_levels_file chain_dir)
protocol_levels
in
let* () =
Stored_data.write_file
(Naming.current_head_file chain_dir)
(Block.descriptor new_head_with_metadata)
in
let* () =
Stored_data.write_file (Naming.checkpoint_file chain_dir) new_head_descr
in
let* () =
Stored_data.write_file
(Naming.cementing_highwatermark_file chain_dir)
None
in
let* () = Stored_data.write_file (Naming.target_file chain_dir) None in
let* () =
Stored_data.write_file (Naming.savepoint_file chain_dir) new_head_descr
in
let* caboose_descr =
match history_mode with
| History_mode.Archive | Full _ ->
return (Block_repr.hash genesis_block, Block_repr.level genesis_block)
| Rolling _ -> (
let*! o = Lwt_stream.peek floating_blocks_stream in
match o with
| None ->
assert false
| Some caboose -> (
match Block_repr.metadata new_head_with_metadata with
| None -> assert false
| Some metadata ->
if
Int32.sub
(Block_repr.level new_head_with_metadata)
(Int32.of_int metadata.max_operations_ttl)
<= 0l
then return (genesis.block, 0l)
else return (Block_repr.hash caboose, Block_repr.level caboose)
))
in
let* () =
Stored_data.write_file (Naming.caboose_file chain_dir) caboose_descr
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)
Chain_id.Map.empty
in
let* () =
Stored_data.write_file (Naming.genesis_block_file chain_dir) genesis_block
in
let* block_store =
Block_store.load chain_dir ~genesis_block ~readonly:false
in
let predecessor_block_hash = Block_header.hash predecessor_header in
let*! () =
Lwt_stream.iter_s
(fun block ->
let hash = Block_repr.hash block in
let*! (_ : unit tzresult) =
if Block_hash.equal predecessor_block_hash hash then
let predecessor_context_hash =
match
Protocol_levels.find
predecessor_header.shell.proto_level
protocol_levels
with
| None -> Stdlib.failwith "unknown protocol"
| Some {Protocol_levels.expect_predecessor_context; _} ->
if expect_predecessor_context then
Block_repr.context new_head_with_metadata
else predecessor_header.Block_header.shell.context
in
Block_store.store_block block_store block predecessor_context_hash
else Block_store.store_block block_store block Context_hash.zero
in
notify ())
floating_blocks_stream
in
let* () =
Block_store.store_block
block_store
new_head_with_metadata
new_head_resulting_context_hash
in
let*! () = Block_store.close block_store in
let chain_config = {history_mode; genesis; expiration = None} in
let* () =
Stored_data.write_file (Naming.chain_config_file chain_dir) chain_config
in
return_unit
end