2009-03-31 23:24:28 -04:00
|
|
|
from mode import Fundamental
|
2009-03-30 23:15:27 -04:00
|
|
|
from lex import Grammar, PatternRule, RegionRule, PatternMatchRule
|
|
|
|
from mode.python import StringGrammar1, StringGrammar2, StringGrammar3, StringGrammar4
|
2010-04-26 00:01:00 -04:00
|
|
|
from method import Method, arg
|
|
|
|
|
|
|
|
from subprocess import Popen, PIPE, STDOUT
|
2007-07-21 11:40:53 -04:00
|
|
|
|
2009-03-30 23:15:27 -04:00
|
|
|
chr1 = '[a-zA-Z_.?]'
|
|
|
|
chr2 = '[a-zA-Z0-9_.?$#@~]'
|
|
|
|
word = chr1 + chr2 + '*'
|
2007-07-21 11:40:53 -04:00
|
|
|
|
|
|
|
class NasmGrammar(Grammar):
|
|
|
|
rules = [
|
2010-10-16 11:03:34 -04:00
|
|
|
PatternRule('comment', ';.*$'),
|
|
|
|
RegionRule('comment', '%if +0', Grammar, r'%%endif'),
|
|
|
|
|
2010-04-26 00:01:00 -04:00
|
|
|
# for use with ndisasm files
|
2010-10-16 11:03:34 -04:00
|
|
|
PatternMatchRule('x', '^([0-9a-fA-F]{8})( )([0-9a-fA-F]+)', 'nasm.integer', 'spaces', 'nasm.address'),
|
|
|
|
PatternRule('nasm.address', '^[0-9a-fA-F]{8} [0-9a-fA-F]+'),
|
2010-04-26 00:01:00 -04:00
|
|
|
|
|
|
|
PatternRule('spaces', ' +'),
|
|
|
|
PatternRule("nasm.integer", "(0[xX][0-9a-fA-F]+|0|[1-9][0-9]*|0[0-7]+)[lL]?"),
|
|
|
|
PatternRule('nasm.register', "(?:eax|ebx|ecx|edx|ax|ah|al|bx|bh|bl|bp|cx|ch|cl|cmpsb|dh|di|dl|ds|dx|esi|es|edi|esp|ebp|si|sp|stosd)(?!" + chr2 + ")"),
|
|
|
|
PatternRule('nasm.pseudo', "(?:a16|a32|byte|db|dd|do|dq|dt|dword|qword|tword|fs|gs|near|o16|o32|short)(?!" + chr2 + ")"),
|
|
|
|
PatternRule('nasm.instruction', "(?:jg|jeq|jecxz|jne|ja|jmp|push|pushad|pushfd|call|ret|sub|adc|add|popad|popaw|popa|popfd|pop|call|and|arpl|bound|cwd|cdq|clc|cld|cli|cmp|cmpxchg|cpuid|das|dec|divpd|div|enter|leave|fadd|fld|fmul|fsqrt|fsub|fs|hlt|imul|inc|insb|insd|insw|ins|int|int3|in|jcxz|jc|jna|jnc|jnz|jo|js|jz|lea|lldt|loadsb|lock|loopne|movzx|movd|mov|mul|neg|not|nop|or|outsb|outsd|outsw|repe|retf|rol|sal|sar|sbb|scasw|shl|shr|shld|shrd|sldt|syscall|sysenter|sysexit|test|xchg|xadd|xor)(?!" + chr2 + ")"),
|
2010-10-16 11:03:34 -04:00
|
|
|
PatternRule('nasm.macro', "\%(?:define|undef|assign|strlen|macro|endmacro|if|elif|else|endif|ifdef|ifndef|include|push|pop|stacksize)(?!" + chr2 + ")"),
|
2010-04-26 00:01:00 -04:00
|
|
|
PatternRule('nasm.keyword', "(?:section|global|extern)(?!" + chr2 + ")"),
|
2009-04-09 00:34:43 -04:00
|
|
|
PatternRule('nasm.prefix', "(?:dword|word|lock)(?!" + chr2 + ")"),
|
|
|
|
PatternMatchRule('x', '(' + word + ')(:)', 'nasm.label', 'delimiter'),
|
|
|
|
PatternRule("nasm.identifier", r'\$?' + word),
|
|
|
|
PatternRule("nasm.float", r"[0-9]+\.[0-9]*|\.[0-9]+|([0-9]|[0-9]+\.[0-9]*|\.[0-9]+)[eE][\+-]?[0-9]+"),
|
|
|
|
PatternRule('delimiter', r'(?://|%%|<<|>>|[~!\.\*/%\-\+\(\)\[\],\|\^\&])'),
|
2010-10-16 11:10:39 -04:00
|
|
|
# TODO: nasm strings seem like they are single-line only
|
2009-03-30 23:15:27 -04:00
|
|
|
RegionRule('string', '"""', StringGrammar4, '"""'),
|
2009-04-09 00:34:43 -04:00
|
|
|
RegionRule('string', "'''", StringGrammar3, "'''"),
|
2010-10-16 11:10:39 -04:00
|
|
|
RegionRule('string', '"', StringGrammar2, '"'),
|
2009-04-09 00:34:43 -04:00
|
|
|
RegionRule('string', "'", StringGrammar1, "'"),
|
|
|
|
PatternRule('eol', '\n'),
|
|
|
|
PatternRule('continuation', r'\\\n$'),
|
2007-07-21 11:40:53 -04:00
|
|
|
]
|
|
|
|
|
2010-04-26 00:01:00 -04:00
|
|
|
class NasmDisassembleFile(Method):
|
|
|
|
args = [arg("path", dt='path', p="Path: "),
|
|
|
|
arg('flags', p='Flags: ', dv=lambda w: '-b 16', ld=True)]
|
|
|
|
def _execute(self, w, **vargs):
|
|
|
|
p = Popen(['ndisasm', vargs['path']], stdout=PIPE, stderr=STDOUT)
|
|
|
|
output = p.stdout.read()
|
|
|
|
retval = p.wait()
|
|
|
|
modename = None
|
|
|
|
bufname = '*Disasm:%s*' % vargs['path']
|
|
|
|
w.application.data_buffer(bufname, output, switch_to=True,
|
|
|
|
modename=modename)
|
|
|
|
|
2013-07-28 22:28:39 -04:00
|
|
|
# white is for delimiters, operators, numbers
|
|
|
|
default = ('default', 'default')
|
|
|
|
|
|
|
|
# magenta is for keywords/builtins
|
|
|
|
lo_magenta = ('magenta202', 'default')
|
|
|
|
hi_magenta = ('magenta414', 'default')
|
|
|
|
|
|
|
|
# red is for comments
|
|
|
|
lo_red = ('red300', 'default')
|
|
|
|
hi_red = ('red511', 'default')
|
|
|
|
|
|
|
|
# orange is for macro definitions, headers and constants
|
|
|
|
hi_orange = ('yellow531', 'default')
|
|
|
|
lo_orange = ('yellow520', 'default')
|
|
|
|
|
|
|
|
# yellow is for parts of macros
|
|
|
|
hi_yellow = ('yellow551', 'default')
|
|
|
|
lo_yellow = ('yellow330', 'default')
|
|
|
|
|
|
|
|
# green is for strings and characters
|
|
|
|
lo_green = ('green030', 'default')
|
|
|
|
hi_green = ('green050', 'default')
|
|
|
|
|
|
|
|
# cyan is for types
|
|
|
|
lo_cyan = ('cyan033', 'default')
|
|
|
|
hi_cyan = ('cyan155', 'default')
|
|
|
|
|
|
|
|
# blue is definitions, functions and some macros
|
|
|
|
lo_blue = ('blue113', 'default')
|
|
|
|
hi_blue = ('blue225', 'default')
|
|
|
|
|
2009-03-31 23:24:28 -04:00
|
|
|
class Nasm(Fundamental):
|
2009-03-17 15:24:10 -04:00
|
|
|
name = 'nasm'
|
2007-10-18 17:07:35 -04:00
|
|
|
extensions = ['.s']
|
|
|
|
grammar = NasmGrammar
|
2009-02-15 12:06:35 -05:00
|
|
|
commentc = ';'
|
2007-10-18 17:07:35 -04:00
|
|
|
colors = {
|
2013-07-28 22:28:39 -04:00
|
|
|
'nasm.address': hi_cyan,
|
|
|
|
'nasm.pseudo': hi_cyan,
|
|
|
|
'nasm.keyword': hi_cyan,
|
|
|
|
'nasm.macro': hi_blue,
|
|
|
|
'nasm.register': hi_yellow,
|
|
|
|
'nasm.instruction': hi_magenta,
|
|
|
|
'nasm.label': hi_blue,
|
|
|
|
'nasm.integer': hi_green,
|
|
|
|
'nasm.identifier': hi_orange,
|
2009-04-09 00:34:43 -04:00
|
|
|
}
|
|
|
|
_bindings = {
|
|
|
|
'close-paren': (')',),
|
|
|
|
'close-brace': ('}',),
|
|
|
|
'close-bracket': (']',),
|
2007-07-21 11:40:53 -04:00
|
|
|
}
|
2010-04-26 00:01:00 -04:00
|
|
|
actions = [NasmDisassembleFile]
|
2007-10-19 02:41:33 -04:00
|
|
|
|
|
|
|
install = Nasm.install
|