forked from javascript-obfuscator/javascript-obfuscator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBlockStatementControlFlowTransformer.ts
More file actions
136 lines (115 loc) · 5.16 KB
/
Copy pathBlockStatementControlFlowTransformer.ts
File metadata and controls
136 lines (115 loc) · 5.16 KB
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
import { injectable, inject } from 'inversify';
import { ServiceIdentifiers } from '../../container/ServiceIdentifiers';
import * as estraverse from 'estraverse';
import * as ESTree from 'estree';
import { TControlFlowCustomNodeFactory } from '../../types/container/custom-nodes/TControlFlowCustomNodeFactory';
import { IArrayUtils } from '../../interfaces/utils/IArrayUtils';
import { ICustomNode } from '../../interfaces/custom-nodes/ICustomNode';
import { IOptions } from '../../interfaces/options/IOptions';
import { IRandomGenerator } from '../../interfaces/utils/IRandomGenerator';
import { IVisitor } from '../../interfaces/IVisitor';
import { ControlFlowCustomNode } from '../../enums/container/custom-nodes/ControlFlowCustomNode';
import { AbstractNodeTransformer } from '../AbstractNodeTransformer';
import { Node } from '../../node/Node';
@injectable()
export class BlockStatementControlFlowTransformer extends AbstractNodeTransformer {
/**
* @type {IArrayUtils}
*/
private readonly arrayUtils: IArrayUtils;
/**
* @type {TControlFlowCustomNodeFactory}
*/
private readonly controlFlowCustomNodeFactory: TControlFlowCustomNodeFactory;
/**
* @param {TControlFlowCustomNodeFactory} controlFlowCustomNodeFactory
* @param {IArrayUtils} arrayUtils
* @param {IRandomGenerator} randomGenerator
* @param {IOptions} options
*/
constructor (
@inject(ServiceIdentifiers.Factory__IControlFlowCustomNode)
controlFlowCustomNodeFactory: TControlFlowCustomNodeFactory,
@inject(ServiceIdentifiers.IArrayUtils) arrayUtils: IArrayUtils,
@inject(ServiceIdentifiers.IRandomGenerator) randomGenerator: IRandomGenerator,
@inject(ServiceIdentifiers.IOptions) options: IOptions
) {
super(randomGenerator, options);
this.controlFlowCustomNodeFactory = controlFlowCustomNodeFactory;
this.arrayUtils = arrayUtils;
}
/**
* @param {BlockStatement} blockStatementNode
* @returns {boolean}
*/
private static blockStatementHasProhibitedStatements (blockStatementNode: ESTree.BlockStatement): boolean {
return blockStatementNode.body.some((statement: ESTree.Statement) => {
const isBreakOrContinueStatement: boolean = Node.isBreakStatementNode(statement) || Node.isContinueStatementNode(statement);
const isVariableDeclarationWithLetOrConstKind: boolean = Node.isVariableDeclarationNode(statement)
&& (statement.kind === 'const' || statement.kind === 'let');
return Node.isFunctionDeclarationNode(statement) || isBreakOrContinueStatement || isVariableDeclarationWithLetOrConstKind;
});
}
/**
* @param {BlockStatement} blockStatementNode
* @returns {boolean}
*/
private static canTransformBlockStatementNode (blockStatementNode: ESTree.BlockStatement): boolean {
let canTransform: boolean = true;
estraverse.traverse(blockStatementNode, {
enter: (node: ESTree.Node): any => {
if (Node.isWhileStatementNode(node)) {
return estraverse.VisitorOption.Skip;
}
if (
Node.isBlockStatementNode(node)
&& BlockStatementControlFlowTransformer.blockStatementHasProhibitedStatements(node)
) {
canTransform = false;
}
}
});
if (blockStatementNode.body.length <= 4) {
canTransform = false;
}
return canTransform;
}
/**
* @return {IVisitor}
*/
public getVisitor (): IVisitor {
return {
leave: (node: ESTree.Node, parentNode: ESTree.Node) => {
if (Node.isBlockStatementNode(node)) {
return this.transformNode(node, parentNode);
}
}
};
}
/**
* @param {BlockStatement} blockStatementNode
* @param {Node} parentNode
* @returns {Node}
*/
public transformNode (blockStatementNode: ESTree.BlockStatement, parentNode: ESTree.Node): ESTree.Node {
if (
this.randomGenerator.getMathRandom() > this.options.controlFlowFlatteningThreshold ||
!BlockStatementControlFlowTransformer.canTransformBlockStatementNode(blockStatementNode)
) {
return blockStatementNode;
}
const blockStatementBody: ESTree.Statement[] = blockStatementNode.body;
const originalKeys: number[] = this.arrayUtils.arrayRange(blockStatementBody.length);
const shuffledKeys: number[] = this.arrayUtils.arrayShuffle(originalKeys);
const originalKeysIndexesInShuffledArray: number[] = originalKeys.map((key: number) => shuffledKeys.indexOf(key));
const blockStatementControlFlowFlatteningCustomNode: ICustomNode = this.controlFlowCustomNodeFactory(
ControlFlowCustomNode.BlockStatementControlFlowFlatteningNode
);
blockStatementControlFlowFlatteningCustomNode.initialize(
blockStatementBody,
shuffledKeys,
originalKeysIndexesInShuffledArray
);
return blockStatementControlFlowFlatteningCustomNode.getNode()[0];
}
}