if (descr->magic != RELAY_DESCR_MAGIC || !(data = descr->private)) return proc; /* no relay data */ if (!data->entry_points[ordinal].orig_func) return proc; /* not a relayed function */ if (check_from_module( debug_from_relay_includelist, debug_from_relay_excludelist, user )) return proc; /* we want to relay it */ return data->entry_points[ordinal].orig_func; }
Wine-dbg>disass proc 0x7e8d7cf0: push esp 0x7e8d7cf1: push 0x10130 0x7e8d7cf6: call 0x7e8dae44 __wine_spec_get_pc_thunk_eax in user32 0x7e8d7cfb: lea eax, [eax+0xd9fcd] 0x7e8d7d01: push eax 0x7e8d7d02: call dword [eax+0x4] 0x7e8d7d05: ret 0x4 Wine-dbg>p 0x7e8d7cfb+0xd9fcd+0x4 0x7e9b1ccc Wine-dbg>x /4x 0x7e9b1ccc 0x7e9b1ccc: 7bc76c2c 7bc77270 00124640 7e8d615d Wine-dbg>disass 0x7bc76c2c 0x7bc76c2c relay_call in ntdll: push ebp 0x7bc76c2d relay_call+0x1 in ntdll: mov ebp, esp 0x7bc76c2f relay_call+0x3 in ntdll: push esi 0x7bc76c30 relay_call+0x4 in ntdll: push edi 0x7bc76c31 relay_call+0x5 in ntdll: push ecx 0x7bc76c32 relay_call+0x6 in ntdll: push dword [ebp+0x10] 0x7bc76c35 relay_call+0x9 in ntdll: push dword [ebp+0xc] 0x7bc76c38 relay_call+0xc in ntdll: push dword [ebp+0x8] 0x7bc76c3b relay_call+0xf in ntdll: call 0x7bc76835 relay_trace_entry [../wine_git/dlls/ntdll/relay.c:334] in ntdll 0x7bc76c40 relay_call+0x14 in ntdll: movzx ecx, byte [ebp+0xe] ...
原始的 GetMenu 地址:
Wine-dbg>info local 0x7bc772f4 RELAY_GetProcAddress+0x75: (0033eac8) HMODULE module=0x7e8d0000 (parameter [EBP+8]) IMAGE_EXPORT_DIRECTORY* exports=0x7e9ad19c (parameter [EBP+12]) DWORD exp_size=0x4b2c (parameter [EBP+16]) FARPROC proc=0x7e8d7cf0 (parameter [EBP+20]) DWORD ordinal=0x130 (parameter [EBP+24]) WCHAR* user=0x0(nil) (parameter [EBP+28]) struct relay_private_data* data=0x124640 (local [EBP-12]) struct relay_descr* descr=0x7e9b1cc8 (local [EBP-16]) Wine-dbg>p *descr {magic=0xdeb90001, relay_call=0x7bc76c2c, relay_call_regs=0x7bc77270, private=0x124640, entry_point_base="恌怲h", entry_point_offsets=0x7e9744f8, arg_types=0x7e975048} Wine-dbg>x /14x 0x124640 0x00124640: 7e8d0000 00000001 72657375 00003233 0x00124650: 00000000 00000000 00000000 00000000 0x00124660: 00000000 00000000 00000000 00000000 0x00124670: 7e913010 7e9aee17 Wine-dbg>x /10x 0x00124670+0x130*8 0x00124ff0: 7e928890 7e9b018c 7e92c6d0 7e9b0194 0x00125000: 7e927fc0 7e9b01a3 7e92cc30 7e9b01be 0x00125010: 7e92b680 7e9b01d3 Wine-dbg>x /10c 0x7e9b018c 0x7e9b018c: G e t M e n u G e Wine-dbg>disass 0x7e928890 0x7e928890 GetMenu [../wine_git/dlls/user32/menu.c:4208] in user32: lea ecx, [esp+0x4] 0x7e928894 GetMenu+0x4 [../wine_git/dlls/user32/menu.c:4208] in user32: and esp, 0xfffffff0 0x7e928897 GetMenu+0x7 [../wine_git/dlls/user32/menu.c:4208] in user32: push dword [ecx-0x4] 0x7e92889a GetMenu+0xa [../wine_git/dlls/user32/menu.c:4208] in user32: push ebp 0x7e92889b GetMenu+0xb [../wine_git/dlls/user32/menu.c:4208] in user32: mov ebp, esp 0x7e92889d GetMenu+0xd [../wine_git/dlls/user32/menu.c:4208] in user32: push edi 0x7e92889e GetMenu+0xe [../wine_git/dlls/user32/menu.c:4208] in user32: push esi 0x7e92889f GetMenu+0xf [../wine_git/dlls/user32/menu.c:4208] in user32: push ebx 0x7e9288a0 GetMenu+0x10 [../wine_git/dlls/user32/menu.c:4208] in user32: push ecx 0x7e9288a1 GetMenu+0x11 [../wine_git/dlls/user32/menu.c:4208] in user32: call 0x7e8d5b60 __x86.get_pc_thunk.bx in user32 ...
本文来源:deepin-wine 团队
输出调试日志是调试程序的一种常见方法,尤其是处理那些难以捉摸的多线程错误、随机崩溃等问题时 。通过在合适的位置输出调试日志,可以帮助我们更快地定位问题所在。
对于不熟悉的代码,经常打日志也有助于快速理解代码的执行流程和功能。在大型项目中,通常会先实现一套自己的调试日志框架,主要有两个目的:
Wine 项目也不例外,它也实现了一套自己的日志系统。这套系统非常简洁,下面我们就来详细介绍。
Wine 的调试日志实现
调试通道(debug channel)
Wine 定义了调试通道的概念来分类日志,将日志的记录和实际的输出分离,无需重新编译 Wine,就能动态地灵活控制 Wine 运行时的日志输出。
<span>__wine_debug_channel<span> </span></span>
的结构体,刚好16个字节,非常符合 UNIX 简单原则的哲学理念:<span>include/wine/debug.h<span> </span></span>
;<span>WINE_DEFAULT_DEBUG_CHANNEL</span>
或<span>WINE_DEFAULT_DEBUG_CHANNEL</span>
宏来声明。<span>git grep _DEBUG_CHANNEL<span> </span></span>
。向调试通道发送日志
Wine 把日志分成了4个级别,从高到低依次是:fixme/ err(or)/ warn/ trace,对应的提供了4个宏来输出不同级别的日志到调试通道:FIXME/ ERR/ WARN/ TRACE,非常简单、清晰。
最终都是调用函数 wine_dbg_log 来打日志:
其中的 funcs.dbg_vlog 初始化时会指向 default_dbg_vlog:
在Wine线程创建成功后 funcs.dbg_vlog 会指向 ntdll/debugtools.c 的
程序运行前开启调试通道
用这样的格式定义环境变量:
<span> WINEDEBUG=[class][+/-]channel[,[class2][+/-]channel2]</span>
其中:
例:
如果没有定义
<span>WINEDEBUG</span>
环境变量,发给每个调试通道的 fixme 和 err 级别的日志都会输出;Wine 默认同时开启运行的调试通道是 256个,由这个宏<span>MAX_DEBUG_OPTIONS</span>
决定。关键代码如下:
仅标记作用的调试通道
比较特殊的高级调试通道
snoop:无需修改代码,记录程序对第三方 native 模块的所有导出函数的调用参数和返回值。
Snoop 是自己检查 stack 数据和反汇编来探测函数调用约定、参数和返回地址的, 如果探测错了会影响程序的稳定,甚至导致程序崩溃,建议仅在非常规情况下使用。
Relay 和 snoop 的缺点是记录的日志巨大导致程序反应非常慢,只建议在没有任何思路、一筹莫展时使用。
程序运行中动态开关调试通道
<span>WINEDEBUG</span>
环境变量里面列出的调试通道。Winedbg 的 set 命令也只能设置在
<span>WINEDEBUG</span>
已经开启了的调试通道。如果没有在<span>WINEDEBUG</span>
里面定义的,就会提示:<span>Unable to find debug channel xxx</span>
。<span>debug_options</span>
和<span>nb_debug_options</span>
的数据。因为<span>debug_options</span>
是按照调试通道名称字符串比较排序的,所以开启多个通道需要手动排序。这个方法适合运行程序时忘记设置<span>WINEDEBUG</span>
,但是想查看某个调试通道日志时又不想重新运行程序的时候使用。<span>debug_options</span>
和<span>nb_debug_options</span>
的地址。GCC 习惯通过 ebx 寄存器来引用全局变量,所以
<span>nb_debug_options</span>
的地址是:<span>0xf75d303b+0x19dfc5+0x134</span>
;<span>debug_options</span>
的地址是:<span>0xf75d303b+0x19dfc5+0x260</span>
;然后参考方法 2 的 set 命令修改内存即可。Relay 调试通道实现原理
在 LoadLibrary 内部,如果检查到已经开启了 relay 通道,并且已加载 Wine 内建的 DLL 文件,那么就调用 RELAY_SetupDLL 来解析 DLL 的导出函数表(IMAGE_DIRECTORY_ENTRY_EXPORT)。对于导出表中的 AddressOfFunctions 数组中的每个条目,先备份原始值,然后将每个条目值修改为可跳转 relay_call 函数的 hack 函数地址。hack 函数在 faked PE 模块中,固定为 24 字节大小,形式如下:
不同的 API 变化的只是里面的数字常量。在 GetProcAddress 内部检查是否开启了 relay 通道,如已开启就调用 RELAY_GetProcAddress 返回 hack 的函数地址。以 user32 模块的GetMenu 举例,返回的 hack 的 GetMenu 函数如下:
原始的 GetMenu 地址:
Relay_call 里面调用 relay_trace_entry/relay_trace_exit 来记录函数的进和出,以及调用真实的API。
Snoop 调试通道的实现原理
结束
解决实际问题的时候, 我们先收集日志,然后重点看 err:、fixme:、seh: 的日志,一般能从中找到问题的相关线索。