我正在编写我的第一个内核模块,它是一个简单的Hello World内核模块。我跟随的tldp指南说如果init_module函数返回非零值,insmod将不会加载模块。 当返回一些负数时,它正如预期的那样工作但在试验时我注意到即使返回值为正,insmod也在加载我的模块。
请解释原因?
例如,如果我返回-185,insmod会立即说它无法加载模块。
但是当我返回185时,它会通知可疑的返回,但仍在加载模块。 这是“返回185”的日志。
[19398.947857] do_init_module: 'hello_1'->init suspiciously returned 185, it should follow 0/-E convention
do_init_module: loading module anyway...
[19398.947859] CPU: 0 PID: 11812 Comm: insmod Tainted: P OE 3.19.0-15-generic #15-Ubuntu
[19398.947860] Hardware name: innotek GmbH VirtualBox/VirtualBox, BIOS VirtualBox 12/01/2006
[19398.947861] ffffffffc06c3000 ffff880059347d98 ffffffff817c2205 0000000000000007
[19398.947862] ffffffffc06c3018 ffff880059347ee8 ffffffff810f9a2d ffffffff810f51d0
[19398.947864] ffff8800db64ad10 ffff880059347e40 ffffffffc06c3018 ffffffffc0391000
[19398.947865] Call Trace:
[19398.947869] [<ffffffff817c2205>] dump_stack+0x45/0x57
[19398.947872] [<ffffffff810f9a2d>] load_module+0x160d/0x1ce0
[19398.947873] [<ffffffff810f51d0>] ? store_uevent+0x40/0x40
[19398.947875] [<ffffffff810fa276>] SyS_finit_module+0x86/0xb0
[19398.947877] [<ffffffff817c934d>] system_call_fastpath+0x16/0x1b
这会在控制台上打印“return -185”
insmod: ERROR: could not insert module hello-1.ko: Unknown error 185
答案 0 :(得分:0)
init_module函数应该返回0或负错误代码。您可以将返回的正值视为undefined behaviour
。
当前内核将正值解释为success
,但会将警告输出到系统日志中。可以使用dmesg
读取此日志。