import { injectable, inject } from 'inversify'; import { ServiceIdentifiers } from '../../container/ServiceIdentifiers'; import * as estraverse from 'estraverse'; import * as ESTree from 'estree'; import { TIdentifierObfuscatingReplacerFactory } from "../../types/container/node-transformers/TIdentifierObfuscatingReplacerFactory"; import { TNodeWithBlockStatement } from '../../types/node/TNodeWithBlockStatement'; import { IIdentifierObfuscatingReplacer } from '../../interfaces/node-transformers/obfuscating-transformers/IIdentifierObfuscatingReplacer'; import { IOptions } from '../../interfaces/options/IOptions'; import { IVisitor } from '../../interfaces/IVisitor'; import { IdentifierObfuscatingReplacers } from "../../enums/container/node-transformers/IdentifierObfuscatingReplacers"; import { NodeType } from '../../enums/NodeType'; import { AbstractNodeTransformer } from '../AbstractNodeTransformer'; import { Node } from '../../node/Node'; import { NodeUtils } from '../../node/NodeUtils'; /** * replaces: * function foo () { //... }; * foo(); * * on: * function _0x12d45f () { //... }; * _0x12d45f(); */ @injectable() export class FunctionDeclarationTransformer extends AbstractNodeTransformer { /** * @type {IIdentifierObfuscatingReplacer} */ private readonly identifierObfuscatingReplacer: IIdentifierObfuscatingReplacer; /** * @type {Map} */ private readonly replaceableIdentifiers: Map = new Map(); /** * @param identifierObfuscatingReplacerFactory * @param options */ constructor ( @inject(ServiceIdentifiers.Factory__IIdentifierObfuscatingReplacer) identifierObfuscatingReplacerFactory: TIdentifierObfuscatingReplacerFactory, @inject(ServiceIdentifiers.IOptions) options: IOptions ) { super(options); this.identifierObfuscatingReplacer = identifierObfuscatingReplacerFactory( IdentifierObfuscatingReplacers.IdentifierObfuscatingReplacer ); } /** * @return {IVisitor} */ public getVisitor (): IVisitor { return { enter: (node: ESTree.Node, parentNode: ESTree.Node) => { if (Node.isFunctionDeclarationNode(node)) { return this.transformNode(node, parentNode); } } }; } /** * @param functionDeclarationNode * @param parentNode * @returns {ESTree.Node} */ public transformNode (functionDeclarationNode: ESTree.FunctionDeclaration, parentNode: ESTree.Node): ESTree.Node { const nodeIdentifier: number = this.nodeIdentifier++; const blockScopeOfFunctionDeclarationNode: TNodeWithBlockStatement = NodeUtils .getBlockScopesOfNode(functionDeclarationNode)[0]; if (blockScopeOfFunctionDeclarationNode.type === NodeType.Program) { return functionDeclarationNode; } this.storeFunctionName(functionDeclarationNode, nodeIdentifier); // check for cached identifiers for current scope node. If exist - loop through them. if (this.replaceableIdentifiers.has(blockScopeOfFunctionDeclarationNode)) { this.replaceScopeCachedIdentifiers(blockScopeOfFunctionDeclarationNode, nodeIdentifier); } else { this.replaceScopeIdentifiers(blockScopeOfFunctionDeclarationNode, nodeIdentifier); } return functionDeclarationNode; } /** * @param functionDeclarationNode * @param nodeIdentifier */ private storeFunctionName (functionDeclarationNode: ESTree.FunctionDeclaration, nodeIdentifier: number): void { this.identifierObfuscatingReplacer.storeNames(functionDeclarationNode.id.name, nodeIdentifier); } /** * @param scopeNode * @param nodeIdentifier */ private replaceScopeCachedIdentifiers (scopeNode: ESTree.Node, nodeIdentifier: number): void { const cachedReplaceableIdentifiers: ESTree.Identifier[] = this.replaceableIdentifiers.get(scopeNode); cachedReplaceableIdentifiers.forEach((replaceableIdentifier: ESTree.Identifier) => { const newReplaceableIdentifier: ESTree.Identifier = this.identifierObfuscatingReplacer.replace(replaceableIdentifier.name, nodeIdentifier); replaceableIdentifier.name = newReplaceableIdentifier.name; }); } /** * @param scopeNode * @param nodeIdentifier */ private replaceScopeIdentifiers (scopeNode: ESTree.Node, nodeIdentifier: number): void { const storedReplaceableIdentifiers: ESTree.Identifier[] = []; estraverse.replace(scopeNode, { enter: (node: ESTree.Node, parentNode: ESTree.Node): any => { if (Node.isReplaceableIdentifierNode(node, parentNode)) { const newIdentifier: ESTree.Identifier = this.identifierObfuscatingReplacer.replace(node.name, nodeIdentifier); const newIdentifierName: string = newIdentifier.name; if (node.name !== newIdentifierName) { node.name = newIdentifierName; } else { storedReplaceableIdentifiers.push(node); } } } }); this.replaceableIdentifiers.set(scopeNode, storedReplaceableIdentifiers); } }