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
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 shared f = Lwt_idle_waiter.task shared.lock (fun () -> f shared.data)
let locked_use shared f =
Lwt_idle_waiter.force_idle shared.lock (fun () -> f shared.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;
}
and chain_state = {
current_head_data : block_descriptor Stored_data.t;
mutable last_finalized_block_level : Int32.t option;
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.caboose 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 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 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}))
module Block = struct
type nonrec block = block
type t = block
type metadata = Block_repr.metadata = {
message : string option;
max_operations_ttl : int;
last_preserved_block_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_preserved_block_level;
last_finalized_block_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_preserved_block_level =
if is_main_chain then
let* () =
fail_unless
Compare.Int32.(last_preserved_block_level >= genesis_level)
(Cannot_store_block
( hash,
Invalid_last_preserved_block_level
{last_preserved_block_level; genesis_level} ))
in
return last_preserved_block_level
else if Compare.Int32.(last_preserved_block_level < genesis_level) then
return genesis_level
else return last_preserved_block_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_preserved_block_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.update_with chain_store.chain_state (fun chain_state ->
Block_lru_cache.remove chain_state.validated_blocks hash ;
let new_last_finalized_block_level =
match chain_state.last_finalized_block_level with
| None -> Some last_finalized_block_level
| Some prev_lfbl ->
Some (Int32.max last_finalized_block_level prev_lfbl)
in
let new_chain_state =
{
chain_state with
last_finalized_block_level = new_last_finalized_block_level;
}
in
return (Some new_chain_state, ()))
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
return_unit
let resulting_context_hash chain_store block =
let open Lwt_result_syntax in
let* 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
~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 context_index = chain_store.global_store.context_index in
Context_ops.checkout_exn context_index (Block_repr.context block)
let context_opt chain_store block =
let context_index = chain_store.global_store.context_index in
Context_ops.checkout context_index (Block_repr.context block)
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 _ ->
Stdlib.failwith "testchain_status: running testchains not supported"
| 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_preserved_block_level metadata =
Block_repr.last_preserved_block_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 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 caboose chain_store = caboose chain_store
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 may_update_checkpoint_and_target chain_store ~new_head ~new_head_lfbl
~checkpoint ~target =
let open Lwt_result_syntax in
let new_checkpoint =
if Compare.Int32.(snd new_head_lfbl > snd checkpoint) then
if Compare.Int32.(snd new_head_lfbl > snd new_head) then new_head
else new_head_lfbl
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 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
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 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* lfbl_block_opt =
match chain_state.last_finalized_block_level with
| None -> return_none
| Some lfbl ->
let distance =
Int32.(to_int @@ max 0l (sub (Block.level new_head) lfbl))
in
Block_store.read_block
chain_store.block_store
~read_metadata:false
(Block (Block.hash new_head, distance))
in
let* new_checkpoint, new_target =
match lfbl_block_opt with
| None ->
return (checkpoint, target)
| Some lfbl_block ->
may_update_checkpoint_and_target
chain_store
~new_head:new_head_descr
~new_head_lfbl:(Block.descriptor lfbl_block)
~checkpoint
~target
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
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_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_preserved_block_level metadata)
(Block_repr.metadata genesis_block)
in
let expect_predecessor_context =
false
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 = genesis_descr;
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 last_finalized_block_level = None 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;
last_finalized_block_level;
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 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 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;
}
in
return 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 fork_testchain _chain_store ~testchain_id:_ ~forked_block:_
~genesis_hash:_ ~genesis_header:_ ~test_protocol:_ ~expiration:_ =
Stdlib.failwith "fork_testchain: unimplemented"
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 ->
return_ok (Some {chain_state with active_testchain = None}, ())
| None -> return_ok (None, ()))
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 ->
Lwt.return
Protocol_levels.(
add
protocol_level
{
protocol = protocol_hash;
activation_block = Block.descriptor 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 find_protocol_info chain_store ~protocol_level =
find_protocol_info chain_store ~protocol_level
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* protocol_info = find_protocol_info chain_store ~protocol_level in
match protocol_info with
| Some {protocol; _} -> return_some protocol
| None -> return_none
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 expected_predecessor_context = true in
set_protocol_level
chain_store
~protocol_level
(activation_block, activated_protocol, expected_predecessor_context)
| Some
{Protocol_levels.protocol; activation_block; expect_predecessor_context}
-> (
let*! _, savepoint_level = savepoint chain_store in
let activation_block_level = snd activation_block 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
~expect_predecessor_context
(ancestor, protocol)))
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 _ _ = ()
let register_split_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*! 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 main_chain_store store =
WithExceptions.Option.get ~loc:__LOC__ store.main_chain_store
let store_dirs = ref []
let context_dirs = ref []
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
if List.mem ~equal:String.equal context_dir !context_dirs then
Format.kasprintf
Stdlib.failwith
"init: already initialized context in %s"
context_dir ;
context_dirs := context_dir :: !context_dirs ;
let patch_context =
Option.map
(fun f ctxt ->
let ctxt =
Tezos_protocol_environment.Memory_context.wrap_memory_context ctxt
in
let+ ctxt = f ctxt in
Tezos_protocol_environment.Memory_context.unwrap_memory_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*! context_index, commit_genesis =
let open Tezos_context_memory in
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 = Naming.chain_dir store_dir chain_id in
let chain_dir_path = Naming.dir_path chain_dir in
if List.mem ~equal:String.equal chain_dir_path !store_dirs then
Format.kasprintf
Stdlib.failwith
"init: already initialized context associated to directory %s@."
chain_dir_path
else (
store_dirs := chain_dir_path :: !store_dirs ;
let* genesis_context = commit_genesis ~chain_id in
create_store
?block_cache_limit
store_dir
~context_index:(Context_ops.Memory_index context_index)
~chain_id
~genesis
~genesis_context
?history_mode
~allow_testchains)
let close_store global_store =
Lwt_watcher.shutdown_input global_store.protocol_watcher ;
Lwt_watcher.shutdown_input global_store.global_block_watcher ;
Lwt.return_unit
let may_switch_history_mode ~store_dir:_ ~context_dir:_ _genesis
~new_history_mode:_ =
Stdlib.failwith "may_switch_history_mode: unimplemented"
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,
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* caboose = Block_store.caboose block_store in
Lwt.return
( current_head,
cementing_highwatermark,
target,
checkpoint,
caboose,
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@ caboose: %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 (lpbl: %ld) (max_op_ttl: %d)"
pp_block_descriptor
(Block.descriptor block)
(Block.last_preserved_block_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
caboose
(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
())
module Unsafe = struct
let repr_of_block = Fun.id
let block_of_repr = Fun.id
end
let v_3_0_upgrade ~store_dir:_ _genesis = Lwt_result_syntax.return_unit