Chinaunix首页 | 论坛 | 博客
  • 博客访问: 568634
  • 博文数量: 114
  • 博客积分: 1620
  • 博客等级: 上尉
  • 技术积分: 1104
  • 用 户 组: 普通用户
  • 注册时间: 2010-12-30 09:16
文章分类

全部博文(114)

文章存档

2016年(1)

2015年(2)

2014年(4)

2013年(9)

2012年(20)

2011年(78)

分类: LINUX

2011-04-26 14:59:01

EXPORT_SYMBOL标签内定义的函数或者符号对全部内核代码公开,不用修改内核代码就可以在您的内核模块中直接调用,即使用EXPORT_SYMBOL可以将一个函数以符号的方式导出给其他模块使用。您还可以手工修改内核源代码来导出另外的函数,用于重新编译并加载新内核后的测试。


Linux symbol export method:

[1] If we want export the symbol in a module, just use the EXPORT_SYMBOL(xxxx) in the C or H file.
    And compile the module by adding the compile flag -DEXPORT_SYMTAB.
    Then we can use the xxxx in the other module.


[2] If we want export some symbol in Kernel that is not in a module such as xxxx in the /arch/ppc/fec.c.
    Firstly, define the xxxx in the fec.c;
    Secondly, make a new file which contain the "extern" define the xxxx(for example, extern int xxxx);
    Lastly, in the ppc_ksyms.c we includes the new file, and add the EXPORT_SYMBOL(xxxx).
    Then we can use the xxxx.

 

使用时注意事项:
在使用EXPORT_SYMBOL 的.c文件中 需要 #include 文件。
// 先写函数
func_a ()
{

}
//再使用EXPORT_SYMBOL
EXPORT_SYMBOL(func_a); 

linux2.6的“/prob/kallsyms”文件对应着内核符号表,记录了符号以及符号所在的内存地址。

模块可以使用如下宏导出符号到内核符号表:

  1. EXPORT_SYMBOL(符号名);  
  2. EXPORT_SYMBOL_GPL(符号名)  

导出的符号可以被其他模块使用,不过使用之前一定要声明一下。EXPORT_SYMBOL_GPL()只适用于包含GPL许可权的模块。

代码演示:

  1. //hello.c文件,定义2个函数,用于导出  
  2. #include   
  3. #include   
  4. MODULE_LICENSE("Dual BSD/GPL");  
  5. int add_integar(int a,int b)  
  6. {  
  7.     return a + b;  
  8. }  
  9. int sub_integar(int a,int b)  
  10. {  
  11.     return a - b;  
  12. }  
  13. EXPORT_SYMBOL(add_integar);  
  14. EXPORT_SYMBOL(sub_integar);  
  15. //test.c 用于调用hello模块导出的函数  
  16. #include   
  17. #include   
  18. MODULE_LICENSE("Dual BSD/GPL");  
  19. extern int add_integar(int ,int); //声明要调用的函数  
  20. extern int sub_integar(int ,int); //声明要调用的函数  
  21. int result(void)  
  22. {  
  23.     int a,b;  
  24.     a = add_integar(1,1);  
  25.     b = sub_integar(1,1);  
  26.       
  27.     printk("%d\n",a);  
  28.     printk("%d\n",b);  
  29.       
  30.     return 0;  
  31. }  

make后,先加在hello模块,再加载test模块。

然后cat /proc/kallsyms | grep integer

显示:

  1. [root@localhost test]# cat /proc/kallsyms |grep integar  
  2. e053d000 u add_integar  [test]  
  3. e053d004 u sub_integar  [test]  
  4. e053d02c r __ksymtab_sub_integar        [hello]  
  5. e053d03c r __kstrtab_sub_integar        [hello]  
  6. e053d034 r __ksymtab_add_integar        [hello]  
  7. e053d048 r __kstrtab_add_integar        [hello]  
  8. e053d000 T add_integar  [hello]  
  9. e053d004 T sub_integar  [hello]  


 

阅读(1050) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~