示例#1
0
 public AtmosphereProgram(string name, ITamperedProcess process, Parameter <long> pressedKeys, IOperation entryPoint)
 {
     Name         = name;
     Process      = process;
     _pressedKeys = pressedKeys;
     _entryPoint  = entryPoint;
 }
示例#2
0
 public AtmosphereCompiler(ulong exeAddress, ulong heapAddress, ulong aliasAddress, ulong aslrAddress, ITamperedProcess process)
 {
     _exeAddress   = exeAddress;
     _heapAddress  = heapAddress;
     _aliasAddress = aliasAddress;
     _aslrAddress  = aslrAddress;
     _process      = process;
 }
示例#3
0
 public CompilationContext(ulong exeAddress, ulong heapAddress, ITamperedProcess process)
 {
     Process         = process;
     PressedKeys     = new Parameter <long>(0);
     BlockStack      = new Stack <OperationBlock>();
     Registers       = new Dictionary <byte, Register>();
     SavedRegisters  = new Dictionary <byte, Register>();
     StaticRegisters = new Dictionary <byte, Register>();
     ExeAddress      = exeAddress;
     HeapAddress     = heapAddress;
 }
示例#4
0
 public Pointer(IOperand position, ITamperedProcess process)
 {
     _position = position;
     _process  = process;
 }
示例#5
0
 private bool IsProcessValid(ITamperedProcess process)
 {
     return(process.State != ProcessState.Crashed && process.State != ProcessState.Exiting && process.State != ProcessState.Exited);
 }
示例#6
0
        private ITamperProgram CompileImpl(IEnumerable <string> rawInstructions, ulong exeAddress, ulong heapAddress, ITamperedProcess process)
        {
            CompilationContext context = new CompilationContext(exeAddress, heapAddress, process);

            context.BlockStack.Push(new OperationBlock(null));

            // Parse the instructions.

            foreach (string rawInstruction in rawInstructions)
            {
                Logger.Debug?.Print(LogClass.TamperMachine, $"Compiling instruction {rawInstruction}");

                byte[]   instruction = InstructionHelper.ParseRawInstruction(rawInstruction);
                CodeType codeType    = InstructionHelper.GetCodeType(instruction);

                switch (codeType)
                {
                case CodeType.StoreConstantToAddress:
                    StoreConstantToAddress.Emit(instruction, context);
                    break;

                case CodeType.BeginMemoryConditionalBlock:
                    BeginConditionalBlock.Emit(instruction, context);
                    break;

                case CodeType.EndConditionalBlock:
                    EndConditionalBlock.Emit(instruction, context);
                    break;

                case CodeType.StartEndLoop:
                    StartEndLoop.Emit(instruction, context);
                    break;

                case CodeType.LoadRegisterWithContant:
                    LoadRegisterWithConstant.Emit(instruction, context);
                    break;

                case CodeType.LoadRegisterWithMemory:
                    LoadRegisterWithMemory.Emit(instruction, context);
                    break;

                case CodeType.StoreConstantToMemory:
                    StoreConstantToMemory.Emit(instruction, context);
                    break;

                case CodeType.LegacyArithmetic:
                    LegacyArithmetic.Emit(instruction, context);
                    break;

                case CodeType.BeginKeypressConditionalBlock:
                    BeginConditionalBlock.Emit(instruction, context);
                    break;

                case CodeType.Arithmetic:
                    Arithmetic.Emit(instruction, context);
                    break;

                case CodeType.StoreRegisterToMemory:
                    StoreRegisterToMemory.Emit(instruction, context);
                    break;

                case CodeType.BeginRegisterConditionalBlock:
                    BeginConditionalBlock.Emit(instruction, context);
                    break;

                case CodeType.SaveOrRestoreRegister:
                    SaveOrRestoreRegister.Emit(instruction, context);
                    break;

                case CodeType.SaveOrRestoreRegisterWithMask:
                    SaveOrRestoreRegisterWithMask.Emit(instruction, context);
                    break;

                case CodeType.ReadOrWriteStaticRegister:
                    ReadOrWriteStaticRegister.Emit(instruction, context);
                    break;

                case CodeType.PauseProcess:
                    PauseProcess.Emit(instruction, context);
                    break;

                case CodeType.ResumeProcess:
                    ResumeProcess.Emit(instruction, context);
                    break;

                case CodeType.DebugLog:
                    DebugLog.Emit(instruction, context);
                    break;

                default:
                    throw new TamperCompilationException($"Code type {codeType} not implemented in Atmosphere cheat");
                }
            }

            // Initialize only the registers used.

            Value <ulong> zero     = new Value <ulong>(0UL);
            int           position = 0;

            foreach (Register register in context.Registers.Values)
            {
                context.CurrentOperations.Insert(position, new OpMov <ulong>(register, zero));
                position++;
            }

            if (context.BlockStack.Count != 1)
            {
                throw new TamperCompilationException($"Reached end of compilation with unmatched conditional(s) or loop(s)");
            }

            return(new AtmosphereProgram(process, context.PressedKeys, new Block(context.CurrentOperations)));
        }
示例#7
0
        public ITamperProgram Compile(IEnumerable <string> rawInstructions, ulong exeAddress, ulong heapAddress, ITamperedProcess process)
        {
            Logger.Debug?.Print(LogClass.TamperMachine, $"Executable address: {exeAddress:X16}");
            Logger.Debug?.Print(LogClass.TamperMachine, $"Heap address: {heapAddress:X16}");

            try
            {
                return(CompileImpl(rawInstructions, exeAddress, heapAddress, process));
            }
            catch (TamperCompilationException exception)
            {
                // Just print the message without the stack trace.
                Logger.Error?.Print(LogClass.TamperMachine, exception.Message);
            }
            catch (Exception exception)
            {
                Logger.Error?.Print(LogClass.TamperMachine, exception.ToString());
            }

            Logger.Error?.Print(LogClass.TamperMachine, "There was a problem while compiling the Atmosphere cheat");

            return(null);
        }
示例#8
0
 public OpProcCtrl(ITamperedProcess process, bool pause)
 {
     _process = process;
     _pause   = pause;
 }