2024-07-09 23:09:46 +00:00
|
|
|
import os
|
|
|
|
import sys
|
2015-12-19 15:55:14 +00:00
|
|
|
import traceback
|
2024-08-27 19:03:20 +00:00
|
|
|
import logging
|
|
|
|
import pytest
|
2024-07-09 23:15:47 +00:00
|
|
|
|
2024-08-27 19:03:20 +00:00
|
|
|
from infernal_interpreter.Junk import JunkComparisonException
|
|
|
|
from infernal_interpreter.Emulator import Emulator, CodeParseException
|
2015-12-19 15:55:14 +00:00
|
|
|
|
2024-08-27 19:03:20 +00:00
|
|
|
logger = logging.getLogger(__name__)
|
2015-12-16 23:06:26 +00:00
|
|
|
|
|
|
|
################################################################################
|
|
|
|
|
2024-08-27 19:03:20 +00:00
|
|
|
code_tests = []
|
2024-07-09 23:15:47 +00:00
|
|
|
|
2015-12-16 23:06:26 +00:00
|
|
|
def add_test(name, result, register, code):
|
2024-08-27 19:03:20 +00:00
|
|
|
code_tests.append((name, result, register, code))
|
2024-07-09 23:15:47 +00:00
|
|
|
|
2015-12-16 23:06:26 +00:00
|
|
|
|
|
|
|
################################################################################
|
2016-03-13 14:44:59 +00:00
|
|
|
# Arithmetic Operations
|
2015-12-16 23:06:26 +00:00
|
|
|
|
2024-07-09 23:15:47 +00:00
|
|
|
add_test(
|
|
|
|
'constant $255',
|
|
|
|
255,
|
|
|
|
'%rsi',
|
|
|
|
"""
|
2015-12-16 23:06:26 +00:00
|
|
|
movq $255, %rsi
|
2024-07-09 23:15:47 +00:00
|
|
|
""",
|
|
|
|
)
|
|
|
|
|
|
|
|
add_test(
|
|
|
|
'static addition 10+$20',
|
|
|
|
30,
|
|
|
|
'%rsi',
|
|
|
|
"""
|
2015-12-16 23:06:26 +00:00
|
|
|
movq $10, %rsi
|
|
|
|
addq $20, %rsi
|
2024-07-09 23:15:47 +00:00
|
|
|
""",
|
|
|
|
)
|
|
|
|
|
|
|
|
add_test(
|
|
|
|
'register addition 10+20',
|
|
|
|
30,
|
|
|
|
'%rsi',
|
|
|
|
"""
|
2015-12-16 23:06:26 +00:00
|
|
|
movq $10, %rsi
|
|
|
|
movq $20, %rax
|
|
|
|
addq %rax, %rsi
|
2024-07-09 23:15:47 +00:00
|
|
|
""",
|
|
|
|
)
|
|
|
|
|
|
|
|
add_test(
|
|
|
|
'register subtraction 10-20',
|
|
|
|
-10,
|
|
|
|
'%rsi',
|
|
|
|
"""
|
2016-03-13 14:44:59 +00:00
|
|
|
movq $10, %rsi
|
|
|
|
movq $20, %rax
|
|
|
|
subq %rax, %rsi
|
2024-07-09 23:15:47 +00:00
|
|
|
""",
|
|
|
|
)
|
2016-03-13 14:44:59 +00:00
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# Branching
|
|
|
|
|
|
|
|
branch_tests = [
|
2024-07-09 23:15:47 +00:00
|
|
|
('jg', 10, '>', 5, 0),
|
|
|
|
('jg', 5, '>', 5, 1),
|
|
|
|
('jg', 5, '>', 10, 1),
|
|
|
|
('jl', 10, '<', 5, 1),
|
|
|
|
('jl', 5, '<', 5, 1),
|
|
|
|
('jl', 5, '<', 10, 0),
|
|
|
|
('je', 10, '==', 5, 1),
|
|
|
|
('je', 5, '==', 5, 0),
|
|
|
|
('je', 5, '==', 10, 1),
|
|
|
|
('jge', 10, '>=', 5, 0),
|
|
|
|
('jge', 5, '>=', 5, 0),
|
|
|
|
('jge', 5, '>=', 10, 1),
|
|
|
|
('jle', 10, '<=', 5, 1),
|
|
|
|
('jle', 5, '<=', 5, 0),
|
|
|
|
('jle', 5, '<=', 10, 0),
|
|
|
|
('jne', 10, '!=', 5, 0),
|
|
|
|
('jne', 5, '!=', 5, 1),
|
|
|
|
('jne', 5, '!=', 10, 0),
|
2016-03-13 14:44:59 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
for jump_instruct, a, comp, b, result in branch_tests:
|
2024-07-09 23:15:47 +00:00
|
|
|
add_test(
|
|
|
|
f'branch {a} {comp} {b}={not result}',
|
|
|
|
result,
|
|
|
|
'%rsi',
|
|
|
|
f"""
|
2018-02-06 19:56:33 +00:00
|
|
|
start: cmpq ${b}, ${a}
|
|
|
|
{jump_instruct} true
|
|
|
|
movq $1, %rsi
|
|
|
|
jmp return
|
|
|
|
true: movq $0, %rsi
|
|
|
|
return: ret
|
2024-07-09 23:15:47 +00:00
|
|
|
""",
|
|
|
|
)
|
2016-03-13 14:44:59 +00:00
|
|
|
|
2015-12-19 15:55:14 +00:00
|
|
|
################################################################################
|
2016-03-13 14:44:59 +00:00
|
|
|
# Junk Comparisons
|
2015-12-19 15:55:14 +00:00
|
|
|
|
2024-07-09 23:15:47 +00:00
|
|
|
add_test(
|
|
|
|
'invalid comparison 1',
|
2024-08-27 19:03:20 +00:00
|
|
|
JunkComparisonException,
|
2024-07-09 23:15:47 +00:00
|
|
|
'None',
|
|
|
|
"""
|
2015-12-19 15:55:14 +00:00
|
|
|
start: movq $100, %rsp # Set stack pointer to a random position.
|
2018-02-06 19:56:33 +00:00
|
|
|
popq %rsi # Move a Junk value into %rsi
|
|
|
|
cmpq $10, %rsi # Do a Junk comparison, which triggers the `i` comp
|
|
|
|
# virtual register.
|
|
|
|
jg start # Attempt to do a jump to the start, if (Junk-10)>0,
|
|
|
|
# which makes no sense, and thus throws an error.
|
2024-07-09 23:15:47 +00:00
|
|
|
""",
|
|
|
|
)
|
|
|
|
|
|
|
|
add_test(
|
|
|
|
'invalid addition 1',
|
2024-08-27 19:03:20 +00:00
|
|
|
JunkComparisonException,
|
2024-07-09 23:15:47 +00:00
|
|
|
'None',
|
|
|
|
"""
|
2015-12-19 15:55:14 +00:00
|
|
|
start: movq $100, %rsp # Set stack pointer to a random position.
|
2018-02-06 19:56:33 +00:00
|
|
|
popq %rsi # Move a Junk value into %rsi
|
|
|
|
addq %rsi, %rsp # Adds Junk to 101, which produces Junk.
|
|
|
|
cmpq $10, %rsp # Do a Junk comparison, which triggers the `i` comp
|
|
|
|
# virtual register.
|
|
|
|
jg start # Attempt to do a jump to the start, if (Junk-10)>0,
|
|
|
|
# which makes no sense, and thus throws an error.
|
2024-07-09 23:15:47 +00:00
|
|
|
""",
|
|
|
|
)
|
|
|
|
|
|
|
|
add_test(
|
|
|
|
'invalid addition 2',
|
2024-08-27 19:03:20 +00:00
|
|
|
JunkComparisonException,
|
2024-07-09 23:15:47 +00:00
|
|
|
'None',
|
|
|
|
"""
|
2015-12-19 15:55:14 +00:00
|
|
|
start: movq $100, %rsp # Set stack pointer to a random position.
|
2018-02-06 19:56:33 +00:00
|
|
|
popq %rsi # Move a Junk value into %rsi
|
|
|
|
addq %rsp, %rsi # Adds 101 to Junk, which produces Junk.
|
|
|
|
cmpq $10, %rsi # Do a Junk comparison, which triggers the `i` comp
|
|
|
|
# virtual register.
|
|
|
|
jg start # Attempt to do a jump to the start, if (Junk-10)>0,
|
|
|
|
# which makes no sense, and thus throws an error.
|
2024-07-09 23:15:47 +00:00
|
|
|
""",
|
|
|
|
)
|
|
|
|
|
|
|
|
add_test(
|
|
|
|
'invalid subtraction 1',
|
2024-08-27 19:03:20 +00:00
|
|
|
JunkComparisonException,
|
2024-07-09 23:15:47 +00:00
|
|
|
'None',
|
|
|
|
"""
|
2015-12-19 15:55:14 +00:00
|
|
|
start: movq $100, %rsp # Set stack pointer to a random position.
|
2018-02-06 19:56:33 +00:00
|
|
|
popq %rsi # Move a Junk value into %rsi
|
|
|
|
subq %rsi, %rsp # Adds Junk to 101, which produces Junk.
|
|
|
|
cmpq $10, %rsp # Do a Junk comparison, which triggers the `i` comp
|
|
|
|
# virtual register.
|
|
|
|
jg start # Attempt to do a jump to the start, if (Junk-10)>0,
|
|
|
|
# which makes no sense, and thus throws an error.
|
2024-07-09 23:15:47 +00:00
|
|
|
""",
|
|
|
|
)
|
|
|
|
|
|
|
|
add_test(
|
|
|
|
'invalid subtraction 2',
|
2024-08-27 19:03:20 +00:00
|
|
|
JunkComparisonException,
|
2024-07-09 23:15:47 +00:00
|
|
|
'None',
|
|
|
|
"""
|
2015-12-19 15:55:14 +00:00
|
|
|
start: movq $100, %rsp # Set stack pointer to a random position.
|
2018-02-06 19:56:33 +00:00
|
|
|
popq %rsi # Move a Junk value into %rsi
|
|
|
|
subq %rsp, %rsi # Adds 101 to Junk, which produces Junk.
|
|
|
|
cmpq $10, %rsi # Do a Junk comparison, which triggers the `i` comp
|
|
|
|
# virtual register.
|
|
|
|
jg start # Attempt to do a jump to the start, if (Junk-10)>0,
|
|
|
|
# which makes no sense, and thus throws an error.
|
2024-07-09 23:15:47 +00:00
|
|
|
""",
|
|
|
|
)
|
2015-12-16 23:06:26 +00:00
|
|
|
|
|
|
|
################################################################################
|
|
|
|
|
2024-08-27 19:03:20 +00:00
|
|
|
@pytest.mark.parametrize("name,result,register,code", code_tests)
|
|
|
|
def test_execution(name, result, register, code):
|
|
|
|
line_nr = None
|
|
|
|
try:
|
|
|
|
emu = Emulator(code)
|
|
|
|
emu.setStack('junk...', 'calling eip')
|
|
|
|
emu.setRegs(rip=0, rbp='old bp')
|
|
|
|
except CodeParseException as e:
|
|
|
|
logger.exception(
|
|
|
|
'Encountered error when parsing %s, at line %s: %s',
|
|
|
|
name,
|
|
|
|
e.line_nr,
|
|
|
|
e.str,
|
|
|
|
)
|
|
|
|
raise
|
|
|
|
emu = emu
|
|
|
|
|
|
|
|
try:
|
|
|
|
for line_nr in emu:
|
|
|
|
pass
|
|
|
|
if isinstance(result, BaseException):
|
|
|
|
logger.error('Error should have happened in %s, but did not', name)
|
|
|
|
output = emu.getVal(register)
|
|
|
|
if output != result:
|
|
|
|
logger.error(
|
|
|
|
'Failed in %s. %s was %s, should be %s',
|
|
|
|
name,
|
|
|
|
register,
|
|
|
|
output,
|
|
|
|
result,
|
|
|
|
)
|
|
|
|
except BaseException as e:
|
|
|
|
logger.exception('Failed')
|
|
|
|
if not isinstance(result, BaseException) or not isinstance(e, result):
|
|
|
|
logger.exception(
|
|
|
|
'Encountered error in %s, at operation %s',
|
|
|
|
name,
|
|
|
|
emu.getVal('%rip'),
|
|
|
|
)
|
|
|
|
traceback.print_exc()
|
|
|
|
raise
|