-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathtestCallGraph.go
1171 lines (1009 loc) · 34.8 KB
/
testCallGraph.go
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
package testcommon
import (
"fmt"
"strconv"
"testing"
"github.com/multiversx/mx-chain-vm-go/crypto"
"github.com/multiversx/mx-chain-vm-go/crypto/factory"
)
// DefaultCallGraphLockedGas is the default gas locked value
const DefaultCallGraphLockedGas = 150
// FakeCallbackName - used by test framework to reprezent visually a callback that is not present
const FakeCallbackName = "<>"
// TestCall represents the payload of a node in the call graph
type TestCall struct {
ContractAddress []byte
FunctionName string
CallID []byte
OriginalContractID string
}
// ToString - string representatin of a TestCall
func (call *TestCall) ToString() string {
return "contract=" + string(call.ContractAddress) + " function=" + call.FunctionName
}
func (call *TestCall) copy() *TestCall {
return &TestCall{
ContractAddress: call.ContractAddress,
FunctionName: call.FunctionName,
CallID: call.CallID,
OriginalContractID: call.OriginalContractID,
}
}
func buildTestCall(contractID string, functionName string) *TestCall {
return &TestCall{
ContractAddress: MakeTestSCAddress(contractID),
FunctionName: functionName,
CallID: []byte{1}, // initial callID, should be updated when an edge is added
OriginalContractID: contractID, // used for fake cross shard callbacks scenarios
}
}
// TestCallNode is a node in the call graph
type TestCallNode struct {
ID uint
// entry point in call graph
IsStartNode bool
// node payload
Call *TestCall
// connected nodes
AdjacentEdges []*TestCallEdge
NonGasEdgeCounter int64
// labels used only for visualization & debugging
VisualLabel string
// needs to be unique (will be in te form of contract_function_index)
Label string
// back pointer / "edge" to parent for trees (not part of the actual graph, not traversed)
Parent *TestCallNode
IncomingEdge *TestCallEdge
// info used for gas assertions
// set from an incoming edge edge
GasLimit uint64
GasUsed uint64
GasLocked uint64
// computed info
ExecutionRound int
MaxSubtreeExecutionRound int
GasRemaining uint64
GasAccumulated uint64
// set automaticaly when the test is run
CrtTxHash []byte
ShardID uint32
/*
for some processes we don't have a tree traversal, but just an execution order,
so we need this info copied from the incoming edge
*/
// a failed edge points to this node
Fail bool
// error of the failed edge
ErrFail error
}
// LeafLabel - special node label for leafs
const LeafLabel = "*"
// GetEdges gets the outgoing edges of the node
func (node *TestCallNode) GetEdges() []*TestCallEdge {
return node.AdjacentEdges
}
// IsLeaf returns true if the node as any adjacent nodes
func (node *TestCallNode) IsLeaf() bool {
return len(node.AdjacentEdges) == 0
}
// IsGasLeaf returns true if the node as any adjacent nodes and is "*" node
func (node *TestCallNode) IsGasLeaf() bool {
return node.IsLeaf() && node.Call.FunctionName == LeafLabel
}
// GetIncomingEdgeType returns the type of the incoming edge (for a tree)
func (node *TestCallNode) GetIncomingEdgeType() TestCallEdgeType {
if node.IncomingEdge == nil {
return TestCallEdgeType(0)
}
return node.IncomingEdge.Type
}
// IsSync -
func (node *TestCallNode) IsSync() bool {
return node.GetIncomingEdgeType() == Sync
}
// IsAsync -
func (node *TestCallNode) IsAsync() bool {
incEdgeType := node.GetIncomingEdgeType()
return incEdgeType == Async || incEdgeType == AsyncCrossShard
}
// IsCallback -
func (node *TestCallNode) IsCallback() bool {
incEdgeType := node.GetIncomingEdgeType()
return incEdgeType == Callback || incEdgeType == CallbackCrossShard
}
// HasCallback -
func (node *TestCallNode) HasCallback() bool {
for _, edge := range node.AdjacentEdges {
if edge.Type == Callback || edge.Type == CallbackCrossShard {
return true
}
}
return false
}
// Copy copyies the node call info into a new node
func (node *TestCallNode) copy() *TestCallNode {
return &TestCallNode{
Call: node.Call.copy(),
AdjacentEdges: make([]*TestCallEdge, 0),
IsStartNode: node.IsStartNode,
Label: node.Label,
GasLimit: node.GasLimit,
GasRemaining: node.GasRemaining,
GasUsed: node.GasUsed,
GasLocked: node.GasLocked,
// IncomingEdge: node.IncomingEdge,
Fail: node.Fail,
ErrFail: node.ErrFail,
}
}
// IsIncomingEdgeFail -
func (node *TestCallNode) IsIncomingEdgeFail() bool {
if node.IncomingEdge != nil && node.IncomingEdge.Fail {
return true
}
return false
}
// HasFailSyncEdge -
func (node *TestCallNode) HasFailSyncEdge() bool {
for _, edge := range node.AdjacentEdges {
if edge.Type == Sync && edge.IsFailFail() {
return true
}
}
return false
}
// WillNotExecute returns if node will execute based on execution round
func (node *TestCallNode) WillNotExecute() bool {
return node.ExecutionRound == -1
}
// TestCallEdgeType the type of TestCallEdges
type TestCallEdgeType int
// types of TestCallEdges
const (
Sync = iota
Async
Callback
AsyncCrossShard
CallbackCrossShard
// GroupCallback
// ContextCallback
)
// TestCallEdge an edge between two nodes of the call graph
type TestCallEdge struct {
ID uint
Type TestCallEdgeType
// callback function name
Callback string
// Group string
// outgoing node
To *TestCallNode
// gas config for the outgoing node (represented by To)
GasLimit uint64
GasUsed uint64
GasUsedByCallback uint64
GasLocked uint64
// used only for visualization & debugging
Label string
Fail bool
ErrFail error
CallbackFail bool
}
func (edge *TestCallEdge) copy() *TestCallEdge {
return &TestCallEdge{
ID: edge.ID,
Type: edge.Type,
Callback: edge.Callback,
// Group: edge.Group,
To: edge.To,
GasLimit: edge.GasLimit,
GasUsed: edge.GasUsed,
GasUsedByCallback: edge.GasUsedByCallback,
GasLocked: edge.GasLocked,
Label: edge.Label,
Fail: edge.Fail,
CallbackFail: edge.CallbackFail,
ErrFail: edge.ErrFail,
}
}
// SetGasLimit - builder style setter
func (edge *TestCallEdge) SetGasLimit(gasLimit uint64) *TestCallEdge {
edge.GasLimit = gasLimit
return edge
}
// SetGasUsedByCallback - builder style setter
func (edge *TestCallEdge) SetGasUsedByCallback(gasUsedByCallback uint64) *TestCallEdge {
if edge.Type != Async && edge.Type != AsyncCrossShard {
panic("Callbacks are only for async edges")
}
if edge.Callback == FakeCallbackName && gasUsedByCallback != 0 {
panic("Callbacks not present, can't use gas")
}
edge.GasUsedByCallback = gasUsedByCallback
return edge
}
// SetGasUsed - builder style setter
func (edge *TestCallEdge) SetGasUsed(gasUsed uint64) *TestCallEdge {
edge.GasUsed = gasUsed
return edge
}
// SetFail - builder style setter
func (edge *TestCallEdge) SetFail() *TestCallEdge {
edge.Fail = true
edge.To.Fail = true
switch edge.Type {
case Sync:
edge.ErrFail = ErrSyncCallFail
case Async, AsyncCrossShard:
edge.ErrFail = ErrAsyncCallFail
}
edge.To.ErrFail = edge.ErrFail
return edge
}
// SetFailWithExpectedError - builder style setter
func (edge *TestCallEdge) SetFailWithExpectedError(expectedError error) *TestCallEdge {
edge.To.Fail = true
edge.ErrFail = expectedError
edge.To.ErrFail = edge.ErrFail
return edge
}
// IsFailFail -
func (edge *TestCallEdge) IsFailFail() bool {
return edge.Fail
}
// SetCallbackFail - builder style setter
func (edge *TestCallEdge) SetCallbackFail() *TestCallEdge {
edge.CallbackFail = true
edge.ErrFail = ErrAsyncCallbackFail
return edge
}
// SetGasLocked - builder style setter
func (edge *TestCallEdge) SetGasLocked(gasLocked uint64) *TestCallEdge {
if edge.Type != Async && edge.Type != AsyncCrossShard {
panic("Gas locked is only for async edges")
}
edge.GasLocked = DefaultCallGraphLockedGas + gasLocked
return edge
}
func (edge *TestCallEdge) copyAttributesFrom(sourceEdge *TestCallEdge) {
edge.ID = sourceEdge.ID
edge.Type = sourceEdge.Type
edge.Callback = sourceEdge.Callback
// edge.Group = sourceEdge.Group
edge.GasLimit = sourceEdge.GasLimit
edge.GasLocked = sourceEdge.GasLocked
edge.GasUsed = sourceEdge.GasUsed
edge.GasUsedByCallback = sourceEdge.GasUsedByCallback
edge.Label = sourceEdge.Label
edge.Fail = sourceEdge.Fail
edge.CallbackFail = sourceEdge.CallbackFail
edge.ErrFail = sourceEdge.ErrFail
}
// TestCallGraph is the call graph
type TestCallGraph struct {
Nodes []*TestCallNode
StartNode *TestCallNode
Crypto crypto.VMCrypto
sequence uint
edgeSequence uint
}
// CreateTestCallGraph is the initial build metohd for the call graph
func CreateTestCallGraph() *TestCallGraph {
cryptoVM, _ := factory.NewVMCrypto()
return &TestCallGraph{
Nodes: make([]*TestCallNode, 0),
Crypto: cryptoVM,
}
}
// AddStartNode adds the start node of the call graph
func (graph *TestCallGraph) AddStartNode(contractID string, functionName string, gasLimit uint64, gasUsed uint64) *TestCallNode {
node := graph.AddNode(contractID, functionName)
graph.StartNode = node
node.IsStartNode = true
node.GasLimit = gasLimit
node.GasRemaining = 0
node.GasUsed = gasUsed
return node
}
// AddNodeCopy adds a copy of a node to the node list
func (graph *TestCallGraph) AddNodeCopy(node *TestCallNode) *TestCallNode {
nodeCopy := node.copy()
graph.sequence++
nodeCopy.ID = graph.sequence
graph.Nodes = append(graph.Nodes, nodeCopy)
return nodeCopy
}
// AddNode adds a node to the call graph
func (graph *TestCallGraph) AddNode(contractID string, functionName string) *TestCallNode {
graph.sequence++
testCall := buildTestCall(contractID, functionName)
testNode := &TestCallNode{
ID: graph.sequence,
Call: testCall,
AdjacentEdges: make([]*TestCallEdge, 0),
IsStartNode: false,
Label: strconv.Quote(contractID + "." + functionName),
}
graph.Nodes = append(graph.Nodes, testNode)
return testNode
}
// AddSyncEdge adds a labeled sync call edge between two nodes of the call graph
func (graph *TestCallGraph) AddSyncEdge(from *TestCallNode, to *TestCallNode) *TestCallEdge {
edge := graph.addEdge(from, to, true)
edge.Label = "Sync"
return edge
}
// addEdge adds an edge between two nodes of the call graph
func (graph *TestCallGraph) addEdge(from *TestCallNode, to *TestCallNode, fillEdgeID bool) *TestCallEdge {
edge := graph.buildEdge(to, fillEdgeID)
to.Parent = from
from.AdjacentEdges = append(from.AdjacentEdges, edge)
return edge
}
func (graph *TestCallGraph) addEdgeAtStart(from *TestCallNode, to *TestCallNode, fillEdgeID bool) *TestCallEdge {
edge := graph.buildEdge(to, fillEdgeID)
to.Parent = from
from.AdjacentEdges = append([]*TestCallEdge{edge}, from.AdjacentEdges...)
return edge
}
func (graph *TestCallGraph) buildEdge(to *TestCallNode, fillEdgeID bool) *TestCallEdge {
ID := uint(0)
if fillEdgeID {
graph.edgeSequence++
ID = graph.edgeSequence
}
edge := &TestCallEdge{
ID: ID,
Type: Sync,
Callback: "",
// Group: "",
To: to,
}
return edge
}
// AddAsyncEdge adds a local async call edge between two nodes of the call graph
func (graph *TestCallGraph) AddAsyncEdge(from *TestCallNode, to *TestCallNode, callBack string, group string) *TestCallEdge {
return graph.addAsyncEdgeWithType(Async, from, to, callBack, group)
}
// AddAsyncCrossShardEdge adds a local async call edge between two nodes of the call graph
func (graph *TestCallGraph) AddAsyncCrossShardEdge(from *TestCallNode, to *TestCallNode, callBack string, group string) *TestCallEdge {
return graph.addAsyncEdgeWithType(AsyncCrossShard, from, to, callBack, group)
}
func (graph *TestCallGraph) addAsyncEdgeWithType(edgeType TestCallEdgeType, from *TestCallNode, to *TestCallNode, callBack string, group string) *TestCallEdge {
gasLocked := uint64(0)
if callBack != "" {
gasLocked = DefaultCallGraphLockedGas
} else if edgeType == AsyncCrossShard {
callBack = FakeCallbackName
graph.AddNode(from.Call.OriginalContractID, callBack)
}
graph.edgeSequence++
edge := &TestCallEdge{
ID: graph.edgeSequence,
Type: edgeType,
Callback: callBack,
// Group: group,
To: to,
GasLocked: gasLocked,
}
edge.setAsyncEdgeAttributes(group, callBack)
from.AdjacentEdges = append(from.AdjacentEdges, edge)
return edge
}
func (edge *TestCallEdge) setAsyncEdgeAttributes(_ string, callBack string) {
edge.Label = "Async"
// if group != "" {
// edge.Label += "[" + group + "]"
// }
edge.Label += "\n"
if callBack != "" {
edge.Label += callBack
}
}
// GetStartNode - start node getter
func (graph *TestCallGraph) GetStartNode() *TestCallNode {
return graph.StartNode
}
// FindNode finds the corresponding node in the call graph
func (graph *TestCallGraph) FindNode(contractAddress []byte, functionName string) *TestCallNode {
// in the future we can use an index / map if this proves to be a performance problem
// but for test call graphs we are ok
for _, node := range graph.Nodes {
if string(node.Call.ContractAddress) == string(contractAddress) &&
node.Call.FunctionName == functionName {
return node
}
}
return nil
}
type processNodeFunc func([]*TestCallNode, *TestCallNode, *TestCallNode, *TestCallEdge) *TestCallNode
func isVisited(node *TestCallNode, visits map[uint]bool) bool {
value, exists := visits[node.ID]
if !exists {
return false
} else {
return value
}
}
func setVisited(node *TestCallNode, visits map[uint]bool) {
visits[node.ID] = true
}
// DfsGraph a standard DFS traversal for the call graph
func (graph *TestCallGraph) DfsGraph(
processNode processNodeFunc,
followCrossShardEdges bool) {
visits := make(map[uint]bool)
for _, node := range graph.Nodes {
if isVisited(node, visits) {
continue
}
graph.dfsFromNode(nil, node, nil, make([]*TestCallNode, 0), processNode, visits, followCrossShardEdges)
}
}
// DfsGraphFromNode standard DFS starting from a node
func (graph *TestCallGraph) DfsGraphFromNode(startNode *TestCallNode, processNode processNodeFunc,
visits map[uint]bool,
followCrossShardEdges bool) {
graph.dfsFromNode(startNode.Parent, startNode, nil, make([]*TestCallNode, 0), processNode, visits, followCrossShardEdges)
}
func (graph *TestCallGraph) dfsFromNode(parent *TestCallNode, node *TestCallNode, incomingEdge *TestCallEdge, path []*TestCallNode,
processNode processNodeFunc,
visits map[uint]bool,
followCrossShardEdges bool) *TestCallNode {
if isVisited(node, visits) {
return node
}
path = append(path, node)
processedParent := processNode(path, parent, node, incomingEdge)
// a signal to stop DFS for this branch
if processedParent == nil {
return node
}
setVisited(node, visits)
for _, edge := range node.AdjacentEdges {
if !followCrossShardEdges && (edge.Type == AsyncCrossShard || edge.Type == CallbackCrossShard) {
continue
}
graph.dfsFromNode(processedParent, edge.To, edge, path, processNode, visits, followCrossShardEdges)
}
return processedParent
}
func (graph *TestCallGraph) dfsFromNodeRunningOrder(
parent *TestCallNode, node *TestCallNode, incomingEdge *TestCallEdge, path []*TestCallNode,
processNode processNodeFunc,
postProcessNode processNodeFunc,
visits map[uint]bool) *TestCallNode {
if isVisited(node, visits) {
return node
}
path = append(path, node)
processNode(path, parent, node, incomingEdge)
// nodes configured as fail will stop DFS
if node.Fail {
// even if failed, async nodes need to traverse the callback branch
if node.IsAsync() {
callbackEdge := node.AdjacentEdges[len(node.AdjacentEdges)-1]
if callbackEdge.To.IsCallback() {
processedNode := graph.dfsFromNodeRunningOrder(node, callbackEdge.To, callbackEdge, path, processNode, postProcessNode, visits)
// post proces callback
postProcessNode(path, node, processedNode, incomingEdge)
// post process failed async call
postProcessNode(path, parent, node, parent.IncomingEdge)
}
}
// stop DFS
return nil
}
setVisited(node, visits)
for _, edge := range node.AdjacentEdges {
processedNode := graph.dfsFromNodeRunningOrder(node, edge.To, edge, path, processNode, postProcessNode, visits)
// failed non-async branches will stop the DFS edge processing for current node
if processedNode == nil && !edge.To.IsAsync() && !edge.To.IsCallback() {
if !node.IsAsync() {
return nil
}
// for async nodes with failed branches, we call the callback and don't fail the node
callbackEdge := node.AdjacentEdges[len(node.AdjacentEdges)-1]
graph.dfsFromNodeRunningOrder(node, callbackEdge.To, callbackEdge, path, processNode, postProcessNode, visits)
postProcessNode(path, node, edge.To, edge)
break
}
postProcessNode(path, node, edge.To, edge)
}
return node
}
// DfsFromNodeUntilFailures will stop DFS going deeper at first encountered fail
func (graph *TestCallGraph) DfsFromNodeUntilFailures(parent *TestCallNode, node *TestCallNode, incomingEdge *TestCallEdge, path []*TestCallNode,
processNode processNodeFunc,
visits map[uint]bool) *TestCallNode {
if isVisited(node, visits) {
return node
}
path = append(path, node)
processNode(path, parent, node, incomingEdge)
// any failed node stops DFS (configured or not - due failure upstream propagation)
if (incomingEdge != nil && incomingEdge.IsFailFail()) || node.HasFailSyncEdge() {
// evan if failed, async nodes need to traverse the callback branch
if node.IsAsync() {
callbackEdge := node.AdjacentEdges[len(node.AdjacentEdges)-1]
if callbackEdge.To.IsCallback() {
graph.DfsFromNodeUntilFailures(node, callbackEdge.To, callbackEdge, path, processNode, visits)
}
}
return node
}
setVisited(node, visits)
for _, edge := range node.AdjacentEdges {
graph.DfsFromNodeUntilFailures(node, edge.To, edge, path, processNode, visits)
}
return node
}
// DfsGraphFromNodePostOrder - standard post order DFS
func (graph *TestCallGraph) DfsGraphFromNodePostOrder(startNode *TestCallNode, processNode func(*TestCallNode, *TestCallNode, *TestCallEdge) *TestCallNode) {
visits := make(map[uint]bool)
graph.dfsFromNodePostOrder(nil, startNode, nil, processNode, visits)
}
func (graph *TestCallGraph) dfsFromNodePostOrder(parent *TestCallNode, node *TestCallNode, incomingEdge *TestCallEdge, processNode func(*TestCallNode, *TestCallNode, *TestCallEdge) *TestCallNode, visits map[uint]bool) *TestCallNode {
for _, edge := range node.AdjacentEdges {
graph.dfsFromNodePostOrder(node, edge.To, edge, processNode, visits)
}
if isVisited(node, visits) {
return node
}
processedParent := processNode(parent, node, incomingEdge)
setVisited(node, visits)
return processedParent
}
func (graph *TestCallGraph) newGraphUsingNodes() *TestCallGraph {
graphCopy := CreateTestCallGraph()
for _, node := range graph.Nodes {
graphCopy.AddNodeCopy(node)
}
return graphCopy
}
// CreateExecutionGraphFromCallGraph - creates an execution graph from the call graph
func (graph *TestCallGraph) CreateExecutionGraphFromCallGraph() *TestCallGraph {
executionGraph := graph.newGraphUsingNodes()
executionGraph.StartNode = executionGraph.FindNode(
graph.StartNode.Call.ContractAddress,
graph.StartNode.Call.FunctionName)
graph.DfsGraph(func(path []*TestCallNode, parent *TestCallNode, node *TestCallNode, incomingEdge *TestCallEdge) *TestCallNode {
newSource := executionGraph.FindNode(node.Call.ContractAddress, node.Call.FunctionName)
if node.IsLeaf() {
addFinishNodeAsFirstEdge(executionGraph, newSource)
return node
}
addSyncEdgesToExecutionGraph(node, executionGraph, newSource)
addFinishNode(executionGraph, newSource)
addAsyncEdgesToExecutionGraph(node, executionGraph, newSource)
// callbacks were added by async source node processing and must be moved to the end of the node
// after all other node activity (sync & async calls)
moveCallbacksToTheEndOfEdges(newSource)
return node
}, true)
return executionGraph
}
func moveCallbacksToTheEndOfEdges(newSource *TestCallNode) {
nonCallBackEdges := make([]*TestCallEdge, 0)
callBackEdges := make([]*TestCallEdge, 0)
for _, newEdge := range newSource.AdjacentEdges {
if newEdge.Type == Callback || newEdge.Type == CallbackCrossShard {
callBackEdges = append(callBackEdges, newEdge)
} else {
nonCallBackEdges = append(nonCallBackEdges, newEdge)
}
}
newSource.AdjacentEdges = append(nonCallBackEdges, callBackEdges...)
}
func addSyncEdgesToExecutionGraph(node *TestCallNode, executionGraph *TestCallGraph, newSource *TestCallNode) {
for _, edge := range node.AdjacentEdges {
if edge.Type != Sync {
continue
}
originalDestination := edge.To.Call
newDestination := executionGraph.FindNode(originalDestination.ContractAddress, originalDestination.FunctionName)
execEdge := executionGraph.addEdge(newSource, newDestination, false)
execEdge.copyAttributesFrom(edge)
}
}
func addAsyncEdgesToExecutionGraph(node *TestCallNode, executionGraph *TestCallGraph, newSource *TestCallNode) {
// groups := make([]string, 0)
for _, edge := range node.AdjacentEdges {
if edge.Type != Async && edge.Type != AsyncCrossShard {
continue
}
// crtGroup := edge.Group
// if !isGroupPresent(crtGroup, groups) {
// groups = append(groups, crtGroup)
// }
originalDestination := edge.To.Call
newAsyncDestination := executionGraph.FindNode(originalDestination.ContractAddress, originalDestination.FunctionName)
execEdge := executionGraph.addEdge(newSource, newAsyncDestination, false)
execEdge.copyAttributesFrom(edge)
if edge.Callback != "" {
callbackDestination := executionGraph.FindNode(node.Call.ContractAddress, edge.Callback)
if callbackDestination == nil {
panic(fmt.Sprintf("Cant find node %s %s", node.Call.ContractAddress, edge.Callback))
}
execEdge := executionGraph.addEdge(newAsyncDestination, callbackDestination, false)
if edge.CallbackFail {
execEdge.SetFail()
execEdge.ErrFail = ErrAsyncCallbackFail
execEdge.To.ErrFail = ErrAsyncCallbackFail
}
if edge.Type == Async {
execEdge.Type = Callback
} else {
execEdge.Type = CallbackCrossShard
}
execEdge.GasUsedByCallback = edge.GasUsedByCallback
execEdge.Label = "Callback"
}
}
}
// add a new 'finish' edge to a special end of sync execution node
func addFinishNode(graph *TestCallGraph, sourceNode *TestCallNode) {
addFinishNodeWithEdgeFunc(graph, sourceNode, graph.addEdge)
}
func addFinishNodeAsFirstEdge(graph *TestCallGraph, sourceNode *TestCallNode) {
addFinishNodeWithEdgeFunc(graph, sourceNode, graph.addEdgeAtStart)
}
func addFinishNodeWithEdgeFunc(graph *TestCallGraph, sourceNode *TestCallNode, addEdge func(*TestCallNode, *TestCallNode, bool) *TestCallEdge) {
finishNode := buildFinishNode(graph, sourceNode)
addEdge(sourceNode, finishNode, false)
}
func buildFinishNode(graph *TestCallGraph, _ *TestCallNode) *TestCallNode {
finishNode := graph.AddNode("", LeafLabel)
finishNode.Label = LeafLabel
return finishNode
}
// TestCallPath a path in a tree, len(edges) = len(nodes) - 1
type TestCallPath struct {
nodes []*TestCallNode
edges []*TestCallEdge
}
func addToPath(path *TestCallPath, edge *TestCallEdge) *TestCallPath {
return &TestCallPath{
nodes: append(path.nodes, edge.To),
edges: append(path.edges, edge),
}
}
// deep copy of a path
func (path *TestCallPath) copy() *TestCallPath {
return &TestCallPath{
nodes: copyNodesList(path.nodes),
edges: copyEdgeList(path.edges),
}
}
// deep copy of a node list
func copyNodesList(source []*TestCallNode) []*TestCallNode {
dest := make([]*TestCallNode, len(source))
for idxNode, node := range source {
dest[idxNode] = node.copy()
}
return dest
}
// deep copy of an edge list
func copyEdgeList(source []*TestCallEdge) []*TestCallEdge {
dest := make([]*TestCallEdge, len(source))
for idxEdge, edge := range source {
dest[idxEdge] = edge.copy()
}
return dest
}
// gets all the paths (as a list) from a DAG
func (graph *TestCallGraph) getPaths() []*TestCallPath {
path := &TestCallPath{
nodes: []*TestCallNode{graph.GetStartNode()},
edges: make([]*TestCallEdge, 0),
}
paths := make([]*TestCallPath, 0)
graph.getPathsRecursive(path, func(newPath *TestCallPath) {
newPath.print()
paths = append(paths, newPath.copy())
})
return paths
}
// follow the paths in DAG, bun only the allowed paths
// (we can have multiple INs and OUTs for a node, but not all pairs will be paths)
func (graph *TestCallGraph) getPathsRecursive(path *TestCallPath, addPathToResult func(*TestCallPath)) {
lastNodeInPath := path.nodes[len(path.nodes)-1]
if lastNodeInPath.IsLeaf() {
lastNodeInPath.GasUsed = path.nodes[len(path.nodes)-2].GasUsed
lastNodeInPath.GasLimit = lastNodeInPath.GasUsed
addPathToResult(path)
LogGraph.Trace("end of path")
return
}
var lastEdgeInPath *TestCallEdge
if len(path.nodes) > 1 {
lastEdgeInPath = path.edges[len(path.nodes)-2]
}
// for each outgoing edge from the last node in path, if it's allowed to continue on that edge from
// the current path, add the next node to the current path and recurse
for _, edge := range lastNodeInPath.AdjacentEdges {
if
// don't follow a path in the form of sync -> callback
(lastEdgeInPath != nil && lastEdgeInPath.Type == Sync && (edge.Type == Callback || edge.Type == CallbackCrossShard)) ||
// don't follow mixed local / cross-shard paths
(lastEdgeInPath != nil && lastEdgeInPath.Type == Async && edge.Type == CallbackCrossShard) ||
(lastEdgeInPath != nil && lastEdgeInPath.Type == AsyncCrossShard && edge.Type == Callback) ||
// don't follow a path from async -> callback that is not your own
(lastEdgeInPath != nil &&
((lastEdgeInPath.Type == Async && edge.Type == Callback) ||
(lastEdgeInPath.Type == AsyncCrossShard && edge.Type == CallbackCrossShard)) &&
(lastEdgeInPath.Callback != edge.To.Call.FunctionName)) {
continue
}
edge.To.GasLimit = edge.GasLimit
edge.To.GasRemaining = 0
edge.To.GasLocked = edge.GasLocked
if lastEdgeInPath != nil &&
((lastEdgeInPath.Type == Async && edge.Type == Callback) ||
(lastEdgeInPath.Type == AsyncCrossShard && edge.Type == CallbackCrossShard)) {
edge.To.GasUsed = lastEdgeInPath.GasUsedByCallback
} else {
edge.To.GasUsed = edge.GasUsed
}
edge.To.IncomingEdge = edge
LogGraph.Trace("add [" + edge.Label + "] " + edge.To.Label)
newPath := addToPath(path, edge)
graph.getPathsRecursive(newPath, addPathToResult)
}
LogGraph.Trace("end of edges for " + lastNodeInPath.Label)
}
func (path *TestCallPath) print() {
LogGraph.Trace("path = ")
for pathIdx, node := range path.nodes {
if pathIdx > 0 {
LogGraph.Trace(" [" + eliminateNewLines(path.edges[pathIdx-1].Label) + "#" + strconv.Itoa(int(path.edges[pathIdx-1].ID)) + "] ")
LogGraph.Trace(" / ")
}
LogGraph.Trace(node.Label + " ")
LogGraph.Trace(" / ")
}
}
func eliminateNewLines(input string) string {
result := ""
for _, c := range input {
if c != '\n' {
result += string(c)
} else {
result += "|"
}
}
return result
}
// ComputeGasGraphFromExecutionGraph - creates a gas graph from an execution graph
func (graph *TestCallGraph) ComputeGasGraphFromExecutionGraph() *TestCallGraph {
return pathsTreeFromDag(graph)
}
// This will create a list of paths from the DAG and merge them into a call tree
// The merging is done by following the paths in the building tree and complete with nodes from the paths when necessary
func pathsTreeFromDag(graph *TestCallGraph) *TestCallGraph {
newGraph := CreateTestCallGraph()
paths := graph.getPaths()
LogGraph.Trace("process path")
var crtNode *TestCallNode
for _, path := range paths {
nextNode:
for pathIdx, node := range path.nodes {
if pathIdx == 0 {
crtNode = newGraph.FindNode(node.Call.ContractAddress, node.Call.FunctionName)
if crtNode == nil {
crtNode = newGraph.AddNodeCopy(node)
newGraph.StartNode = crtNode
}
continue
}
for _, edge := range crtNode.AdjacentEdges {
crtChild := edge.To
LogGraph.Trace(edge.Label + "==" + path.edges[pathIdx-1].Label + "\n=>" + strconv.FormatBool(edge.Label == path.edges[pathIdx-1].Label))
if string(crtChild.Call.ContractAddress) == string(node.Call.ContractAddress) &&
crtChild.Call.FunctionName == node.Call.FunctionName &&
edge.Label == path.edges[pathIdx-1].Label &&
edge.ID == path.edges[pathIdx-1].ID {
crtNode = crtChild
continue nextNode
}
}
parent := crtNode
crtNode = newGraph.AddNodeCopy(node)
LogGraph.Trace("add edge " + parent.Label + " -> " + crtNode.Label)
pathEdge := path.edges[pathIdx-1]
newEdge := newGraph.addEdge(parent, crtNode, false)
newEdge.To.IncomingEdge = newEdge // these are edges in a tree
newEdge.copyAttributesFrom(pathEdge)
}
}
return newGraph
}
// PropagateSyncFailures -
func (graph *TestCallGraph) PropagateSyncFailures() {
// propagate failure to parent until we reach an async node
graph.DfsGraphFromNodePostOrder(graph.StartNode, func(parent *TestCallNode, node *TestCallNode, incomingEdge *TestCallEdge) *TestCallNode {
if node.IsLeaf() || node.IsAsync() || node.IsCallback() || node.WillNotExecute() {
return node
}
if node.IsIncomingEdgeFail() {
if parent != nil && parent.IncomingEdge != nil {
parent.IncomingEdge.Fail = true
parent.IncomingEdge.ErrFail = node.IncomingEdge.ErrFail
parent.ErrFail = node.IncomingEdge.ErrFail
} else {
parent.ErrFail = node.IncomingEdge.ErrFail
}
}
return node
})
}
// AssignExecutionRounds -
func (graph *TestCallGraph) AssignExecutionRounds(_ *testing.T) {
visits := make(map[uint]bool)
// init execution rounds for graph, all -1 except root and it's execution leaf
for _, node := range graph.Nodes {
node.ExecutionRound = -1
}
if graph.StartNode.Fail {
return
}
graph.StartNode.ExecutionRound = 0
for _, edge := range graph.StartNode.AdjacentEdges {
if edge.To.IsLeaf() {
edge.To.ExecutionRound = 0
break
}
}