Skip to content

Commit 2bd0cde

Browse files
authored
Merge pull request #39 from gitoleg/fix-loader
fixes loader IDA-7 compatibility
2 parents 3a64cf9 + 5ead27e commit 2bd0cde

File tree

2 files changed

+14
-9
lines changed

2 files changed

+14
-9
lines changed

plugins/bap/utils/ida.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@
77
from ._comment_handler import CommentHandlers
88
from ._ctyperewriter import Rewriter
99

10+
try:
11+
from idc import get_segm_name
12+
except ImportError:
13+
from idaapi import get_segm_name
1014

1115
service = Service()
1216
comment = CommentHandlers()
@@ -30,7 +34,7 @@ def output_segments(out):
3034
out.writelines(('(', info.get_proc_name()[1], ' ', size, ' ('))
3135
for seg in idautils.Segments():
3236
out.write("\n({} {} {:d} ({:#x} {:d}))".format(
33-
idaapi.get_segm_name(seg),
37+
get_segm_name(seg),
3438
"code" if idaapi.segtype(seg) == idaapi.SEG_CODE else "data",
3539
idaapi.get_fileregion_offset(seg),
3640
seg, idaapi.getseg(seg).size()))

tests/mockidaapi.py

+9-8
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,12 @@
66
PLUGIN_DRAW = NotImplemented
77
PLUGIN_HIDE = NotImplemented
88
PLUGIN_KEEP = NotImplemented
9-
class plugin_t(object): NotImplemented
10-
class text_sink_t(object): NotImplemented
11-
class Choose2(object): NotImplemented
12-
def idadir(sub): NotImplemented
13-
def get_cmt(ea, off): NotImplemented
14-
def set_cmt(ea, off): NotImplemented
15-
def askyn_c(dflt, title): NotImplemented
16-
def get_input_file_path() : NotImplemented
9+
class plugin_t(object): pass
10+
class text_sink_t(object): pass
11+
class Choose2(object): pass
12+
def idadir(sub): return NotImplemented
13+
def get_cmt(ea, off): return NotImplemented
14+
def set_cmt(ea, off): return NotImplemented
15+
def askyn_c(dflt, title): return NotImplemented
16+
def get_input_file_path() : return NotImplemented
17+
def get_segm_name(ea): return NotImplemented

0 commit comments

Comments
 (0)