加载内核模块时出现未知符号

时间:2011-09-22 10:17:21

标签: linux linux-kernel kernel-module linux-scst

我需要帮助理解插入模块时出现错误的原因。我试过this没有成功。

$ sudo modprobe lpfc_scst 
FATAL: Error inserting lpfc_scst (/lib/modules/2.6.32-33-generic/extra/lpfc_scst.ko): Unknown symbol in module, or unknown parameter (see dmesg)

$ dmesg | tail
[ 1201.262842] lpfc_scst: Unknown symbol scst_register_target
[ 1201.262949] lpfc_scst: Unknown symbol lpfc_tm_term
[ 1201.263161] lpfc_scst: no symbol version for scst_register_session
[ 1201.263164] lpfc_scst: Unknown symbol scst_register_session
[ 1201.263284] lpfc_scst: no symbol version for scst_rx_mgmt_fn
[ 1201.263286] lpfc_scst: Unknown symbol scst_rx_mgmt_fn
[ 1201.263395] lpfc_scst: no symbol version for scst_unregister_session
[ 1201.263398] lpfc_scst: Unknown symbol scst_unregister_session
[ 1201.263573] lpfc_scst: no symbol version for scst_rx_data
[ 1201.263575] lpfc_scst: Unknown symbol scst_rx_data

$ cat /proc/kallsyms | grep scst_register_target
dffd2a10 r __ksymtab_scst_register_target   [scst]
dffd302e r __kstrtab_scst_register_target   [scst]
dffd2b34 r __kcrctab_scst_register_target   [scst]
dffd2a20 r __ksymtab___scst_register_target_template_non_gpl    [scst]
dffd3063 r __kstrtab___scst_register_target_template_non_gpl    [scst]
dffd2b3c r __kcrctab___scst_register_target_template_non_gpl    [scst]
dffd2c10 r __ksymtab___scst_register_target_template    [scst]
dffd308b r __kstrtab___scst_register_target_template    [scst]
dffd2de8 r __kcrctab___scst_register_target_template    [scst]
dff913a0 t __scst_register_target_template  [scst]
dff90dd0 T scst_register_target [scst]
dff91840 T __scst_register_target_template_non_gpl  [scst]

$

非常感谢。

3 个答案:

答案 0 :(得分:10)

我已根据this forum建议解决了这个问题:

  1. 已编译scst
  2. 将生成的Module.symvers附加到现有的/lib/modules/<version>/build/Module.symvers黑客。不知道为什么内核没有看到导出的符号)。
  3. scst复制到/lib/modules/<version>/extra
  4. depmod -a
  5. 已编译lpfc_scst
  6. 插入模块lpfc_scst没有任何问题。
  7. 度过愉快的一天。

答案 1 :(得分:2)

这意味着内核不允许模块查看该变量。看起来您没有将变量添加到内核导出的符号列表中:

EXPORT_SYMBOL_NOVERS(scst_register_target);

答案 2 :(得分:1)

如果您正在尝试insmod一个模块,该模块是针对不是正在运行的内核的实际源的内核源代码树/头构建的,那么最可能的原因是正在运行的内核和一个内核之间的某些内核配置不同你构建了模块。

Linux内核中的链接器实际上除了用于匹配符号的符号名称之外还查看了一些东西,包括可能的函数参数和返回值的散列,以及尝试匹配符号时的各种配置选项(抢占/非抢占)名。我想在你的情况下,由于不同的配置选项,它找不到正确的匹配