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 { NodeMetadata } from '../../node/NodeMetadata'; 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) && !NodeGuards.isExportNamedDeclarationNode(parentNode) ) { 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 blockScopeNode: TNodeWithBlockScope = NodeUtils.getBlockScopeOfNode(functionDeclarationNode); const isGlobalDeclaration: boolean = blockScopeNode.type === NodeType.Program; if (!this.options.renameGlobals && isGlobalDeclaration) { return functionDeclarationNode; } this.storeFunctionName(functionDeclarationNode, blockScopeNode, isGlobalDeclaration); // check for cached identifiers for current scope node. If exist - loop through them. if (this.replaceableIdentifiers.has(blockScopeNode)) { this.replaceScopeCachedIdentifiers(functionDeclarationNode, blockScopeNode); } else { this.replaceScopeIdentifiers(blockScopeNode); } return functionDeclarationNode; } /** * @param {FunctionDeclaration} functionDeclarationNode * @param {TNodeWithBlockScope} blockScopeNode * @param {boolean} isGlobalDeclaration */ private storeFunctionName ( functionDeclarationNode: ESTree.FunctionDeclaration, blockScopeNode: TNodeWithBlockScope, isGlobalDeclaration: boolean ): void { if (isGlobalDeclaration) { this.identifierObfuscatingReplacer.storeGlobalName(functionDeclarationNode.id.name, blockScopeNode); } else { this.identifierObfuscatingReplacer.storeLocalName(functionDeclarationNode.id.name, blockScopeNode); } } /** * @param {FunctionDeclaration} functionDeclarationNode * @param {TNodeWithBlockScope} blockScopeNode */ private replaceScopeCachedIdentifiers ( functionDeclarationNode: ESTree.FunctionDeclaration, blockScopeNode: TNodeWithBlockScope ): void { const cachedReplaceableIdentifiersNamesMap: TReplaceableIdentifiersNames = this.replaceableIdentifiers.get(blockScopeNode); 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, blockScopeNode); replaceableIdentifier.name = newReplaceableIdentifier.name; NodeMetadata.set(replaceableIdentifier, { renamedIdentifier: true }); } } /** * @param {TNodeWithBlockScope} blockScopeNode */ private replaceScopeIdentifiers (blockScopeNode: TNodeWithBlockScope): void { const storedReplaceableIdentifiersNamesMap: TReplaceableIdentifiersNames = new Map(); estraverse.replace(blockScopeNode, { enter: (node: ESTree.Node, parentNode: ESTree.Node | null): void => { if ( parentNode && NodeGuards.isReplaceableIdentifierNode(node, parentNode) && !NodeMetadata.isRenamedIdentifier(node) ) { const newIdentifier: ESTree.Identifier = this.identifierObfuscatingReplacer .replace(node.name, blockScopeNode); const newIdentifierName: string = newIdentifier.name; if (node.name !== newIdentifierName) { node.name = newIdentifierName; NodeMetadata.set(node, { renamedIdentifier: true }); } else { const storedReplaceableIdentifiers: ESTree.Identifier[] = storedReplaceableIdentifiersNamesMap.get(node.name) || []; storedReplaceableIdentifiers.push(node); storedReplaceableIdentifiersNamesMap.set(node.name, storedReplaceableIdentifiers); } } } }); this.replaceableIdentifiers.set(blockScopeNode, storedReplaceableIdentifiersNamesMap); } }