import { inject, injectable, } 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 { TNodeWithBlockScope } from '../../types/node/TNodeWithBlockScope'; import { TReplaceableIdentifiers } from '../../types/node-transformers/TReplaceableIdentifiers'; import { TReplaceableIdentifiersNames } from '../../types/node-transformers/TReplaceableIdentifiersNames'; import { IIdentifierObfuscatingReplacer } from '../../interfaces/node-transformers/obfuscating-transformers/obfuscating-replacers/IIdentifierObfuscatingReplacer'; import { IOptions } from '../../interfaces/options/IOptions'; import { IRandomGenerator } from '../../interfaces/utils/IRandomGenerator'; import { IVisitor } from '../../interfaces/node-transformers/IVisitor'; import { IdentifierObfuscatingReplacer } from "../../enums/node-transformers/obfuscating-transformers/obfuscating-replacers/IdentifierObfuscatingReplacer"; import { NodeType } from '../../enums/node/NodeType'; import { TransformationStage } from '../../enums/node-transformers/TransformationStage'; import { AbstractNodeTransformer } from '../AbstractNodeTransformer'; import { NodeGuards } from '../../node/NodeGuards'; 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: TReplaceableIdentifiers = new Map(); /** * @param {TIdentifierObfuscatingReplacerFactory} identifierObfuscatingReplacerFactory * @param {IRandomGenerator} randomGenerator * @param {IOptions} options */ constructor ( @inject(ServiceIdentifiers.Factory__IIdentifierObfuscatingReplacer) identifierObfuscatingReplacerFactory: TIdentifierObfuscatingReplacerFactory, @inject(ServiceIdentifiers.IRandomGenerator) randomGenerator: IRandomGenerator, @inject(ServiceIdentifiers.IOptions) options: IOptions ) { super(randomGenerator, options); this.identifierObfuscatingReplacer = identifierObfuscatingReplacerFactory( IdentifierObfuscatingReplacer.BaseIdentifierObfuscatingReplacer ); } /** * @param {TransformationStage} transformationStage * @returns {IVisitor | null} */ public getVisitor (transformationStage: TransformationStage): IVisitor | null { switch (transformationStage) { case TransformationStage.Obfuscating: return { enter: (node: ESTree.Node, parentNode: ESTree.Node | null) => { if (parentNode && NodeGuards.isFunctionDeclarationNode(node)) { return this.transformNode(node, parentNode); } } }; default: return null; } } /** * @param {FunctionDeclaration} functionDeclarationNode * @param {NodeGuards} parentNode * @returns {NodeGuards} */ public transformNode (functionDeclarationNode: ESTree.FunctionDeclaration, parentNode: ESTree.Node): ESTree.Node { const nodeIdentifier: number = this.nodeIdentifier++; const blockScopeNode: TNodeWithBlockScope = NodeUtils.getBlockScopesOfNode(functionDeclarationNode)[0]; const isGlobalDeclaration: boolean = blockScopeNode.type === NodeType.Program; if (!this.options.renameGlobals && isGlobalDeclaration) { return functionDeclarationNode; } this.storeFunctionName(functionDeclarationNode, nodeIdentifier); // check for cached identifiers for current scope node. If exist - loop through them. if (this.replaceableIdentifiers.has(blockScopeNode)) { this.replaceScopeCachedIdentifiers(functionDeclarationNode, blockScopeNode, nodeIdentifier); } else { this.replaceScopeIdentifiers(blockScopeNode, nodeIdentifier); } return functionDeclarationNode; } /** * @param {FunctionDeclaration} functionDeclarationNode * @param {number} nodeIdentifier */ private storeFunctionName (functionDeclarationNode: ESTree.FunctionDeclaration, nodeIdentifier: number): void { this.identifierObfuscatingReplacer.storeNames(functionDeclarationNode.id.name, nodeIdentifier); } /** * @param {FunctionDeclaration} functionDeclarationNode * @param {TNodeWithBlockScope} blockScopeNode * @param {number} nodeIdentifier */ private replaceScopeCachedIdentifiers ( functionDeclarationNode: ESTree.FunctionDeclaration, blockScopeNode: TNodeWithBlockScope, nodeIdentifier: number ): void { const cachedReplaceableIdentifiersNamesMap: TReplaceableIdentifiersNames | undefined = this.replaceableIdentifiers.get(blockScopeNode); if (!cachedReplaceableIdentifiersNamesMap) { return; } const cachedReplaceableIdentifiers: ESTree.Identifier[] | undefined = cachedReplaceableIdentifiersNamesMap .get(functionDeclarationNode.id.name); if (!cachedReplaceableIdentifiers) { return; } const cachedReplaceableIdentifierLength: number = cachedReplaceableIdentifiers.length; for (let i: number = 0; i < cachedReplaceableIdentifierLength; i++) { const replaceableIdentifier: ESTree.Identifier = cachedReplaceableIdentifiers[i]; const newReplaceableIdentifier: ESTree.Identifier = this.identifierObfuscatingReplacer .replace(replaceableIdentifier.name, nodeIdentifier); replaceableIdentifier.name = newReplaceableIdentifier.name; } } /** * @param {TNodeWithBlockScope} blockScopeNode * @param {number} nodeIdentifier */ private replaceScopeIdentifiers (blockScopeNode: TNodeWithBlockScope, nodeIdentifier: number): void { const storedReplaceableIdentifiersNamesMap: TReplaceableIdentifiersNames = new Map(); estraverse.replace(blockScopeNode, { enter: (node: ESTree.Node, parentNode: ESTree.Node | null): any => { if (parentNode && NodeGuards.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 { const storedReplaceableIdentifiers: ESTree.Identifier[] = storedReplaceableIdentifiersNamesMap.get(node.name) || []; storedReplaceableIdentifiers.push(node); storedReplaceableIdentifiersNamesMap.set(node.name, storedReplaceableIdentifiers); } } } }); this.replaceableIdentifiers.set(blockScopeNode, storedReplaceableIdentifiersNamesMap); } }