Esempio n. 1
0
def demangle_ms(arch, mangled_name):
    """
	``demangle_ms`` demangles a mangled Microsoft Visual Studio C++ name to a Type object.

	:param Architecture arch: Architecture for the symbol. Required for pointer and integer sizes.
	:param str mangled_name: a mangled Microsoft Visual Studio C++ name
	:return: returns tuple of (Type, demangled_name) or (None, mangled_name) on error
	:rtype: Tuple
	:Example:

		>>> demangle_ms(Architecture["x86_64"], "?testf@Foobar@@SA?AW4foo@1@W421@@Z")
		(<type: public: static enum Foobar::foo __cdecl (enum Foobar::foo)>, ['Foobar', 'testf'])
		>>>
	"""
    handle = ctypes.POINTER(core.BNType)()
    outName = ctypes.POINTER(ctypes.c_char_p)()
    outSize = ctypes.c_ulonglong()
    names = []
    if core.BNDemangleMS(arch.handle, mangled_name, ctypes.byref(handle),
                         ctypes.byref(outName), ctypes.byref(outSize)):
        for i in range(outSize.value):
            names.append(pyNativeStr(outName[i]))
        core.BNFreeDemangledName(ctypes.byref(outName), outSize.value)
        return (types.Type(handle), names)
    return (None, mangled_name)
Esempio n. 2
0
def demangle_ms(arch, mangled_name, options=False):
    """
	``demangle_ms`` demangles a mangled Microsoft Visual Studio C++ name to a Type object.

	:param Architecture arch: Architecture for the symbol. Required for pointer and integer sizes.
	:param str mangled_name: a mangled Microsoft Visual Studio C++ name
	:param options: (optional) Whether to simplify demangled names : None falls back to user settings, a BinaryView uses that BinaryView's settings, or a boolean to set it directally
	:type options: Tuple[bool, BinaryView, None]
	:return: returns tuple of (Type, demangled_name) or (None, mangled_name) on error
	:rtype: Tuple
	:Example:

		>>> demangle_ms(Architecture["x86_64"], "?testf@Foobar@@SA?AW4foo@1@W421@@Z")
		(<type: public: static enum Foobar::foo __cdecl (enum Foobar::foo)>, ['Foobar', 'testf'])
		>>>
	"""
    handle = ctypes.POINTER(core.BNType)()
    outName = ctypes.POINTER(ctypes.c_char_p)()
    outSize = ctypes.c_ulonglong()
    names = []
    if (isinstance(options, BinaryView) and core.BNDemangleMSWithOptions(arch.handle, mangled_name, ctypes.byref(handle), ctypes.byref(outName), ctypes.byref(outSize), options)) or \
     (isinstance(options, bool) and core.BNDemangleMS(arch.handle, mangled_name, ctypes.byref(handle), ctypes.byref(outName), ctypes.byref(outSize), options)) or \
     (options is None and core.BNDemangleMSWithOptions(arch.handle, mangled_name, ctypes.byref(handle), ctypes.byref(outName), ctypes.byref(outSize), None)):
        for i in range(outSize.value):
            names.append(pyNativeStr(outName[i]))
        core.BNFreeDemangledName(ctypes.byref(outName), outSize.value)
        return (types.Type(handle), names)
    return (None, mangled_name)
Esempio n. 3
0
def demangle_gnu3(arch, mangled_name, options=None):
    """
	``demangle_gnu3`` demangles a mangled name to a Type object.

	:param Architecture arch: Architecture for the symbol. Required for pointer and integer sizes.
	:param str mangled_name: a mangled GNU3 name
	:param options: (optional) Whether to simplify demangled names : None falls back to user settings, a BinaryView uses that BinaryView's settings, or a boolean to set it directally
	:type options: Tuple[bool, BinaryView, None]
	:return: returns tuple of (Type, demangled_name) or (None, mangled_name) on error
	:rtype: Tuple
	"""
    handle = ctypes.POINTER(core.BNType)()
    outName = ctypes.POINTER(ctypes.c_char_p)()
    outSize = ctypes.c_ulonglong()
    names = []
    if (isinstance(options, BinaryView) and core.BNDemangleGNU3WithOptions(arch.handle, mangled_name, ctypes.byref(handle), ctypes.byref(outName), ctypes.byref(outSize), options)) or \
     (isinstance(options, bool) and core.BNDemangleGNU3(arch.handle, mangled_name, ctypes.byref(handle), ctypes.byref(outName), ctypes.byref(outSize), options)) or \
     (options is None and core.BNDemangleGNU3WithOptions(arch.handle, mangled_name, ctypes.byref(handle), ctypes.byref(outName), ctypes.byref(outSize), None)):
        for i in range(outSize.value):
            names.append(pyNativeStr(outName[i]))
        core.BNFreeDemangledName(ctypes.byref(outName), outSize.value)
        if not handle:
            return (None, names)
        return (types.Type(handle), names)
    return (None, mangled_name)
Esempio n. 4
0
def demangle_gnu3(arch, mangled_name):
	handle = ctypes.POINTER(core.BNType)()
	outName = ctypes.POINTER(ctypes.c_char_p)()
	outSize = ctypes.c_ulonglong()
	names = []
	if core.BNDemangleGNU3(arch.handle, mangled_name, ctypes.byref(handle), ctypes.byref(outName), ctypes.byref(outSize)):
		for i in range(outSize.value):
			names.append(pyNativeStr(outName[i]))
		core.BNFreeDemangledName(ctypes.byref(outName), outSize.value)
		if not handle:
			return (None, names)
		return (types.Type(handle), names)
	return (None, mangled_name)