Linux中EXPORT_SYMBOL的用法(附:自己的应用)
EXPORT_SYMBOL标签内定义的函数或者符号对全部内核代码公开,不用修改内核代码就可以在您的内核模块中直接调用,即使用EXPORT_SYMBOL可以将一个函数以符号的方式导出给其他模块使用。您还可以手工修改内核源代码来导出另外的函数,用于重新编译并加载新内核后的测试。Linux symbol export method:[1] If we want export the symbol in
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 <linux/module.h> 文件。
// 先写函数
func_a ()
{
}
//再使用EXPORT_SYMBOL
EXPORT_SYMBOL(func_a);
我的一个使用实例:
w90p710网卡驱动里,有自动探测网线有没有插上的这个函数接口。由于应用程序的需要,我们需要返回网线是否插上这个状态。刚开始想到的办法是在网卡驱动里加ioctl()来获取,可是网络设备的驱动并不和字符设备的驱动相同。在sockfd = socket()获取套接字后再ioctl(sockfd, cmd, &slf)时,始终报invalid argument这个错误。
(Link: http://www.mcuos.com/redirect.php?tid=1650&goto=lastpost#lastpost )
一招不行,再来一招:想起
EXPORT_SYMBOL能够把符号导出到模块可见,或整个内核可见。这样我何不在eth0的驱动里定义一个全局变量来保存网卡是否插上这个状态,然后再使用他导出到整个内核空间可见,然后再这别的驱动里来返回这个值?试了一下,果然成功了!
1,在linux-2.4.x/driver/net/w90p710_mac.c中定义全局变量:
// all macPlugStatus is add by guowenxue 2008.8.1
int macPlugStatus;
然后在ResetPhyChip()函数里: -----系统启动,初始化网卡时,网线没插上
当printk("ResetPhyChip failed 1/n")时,设置:macPlugStatus = 0;
当TRACE_ERROR("OK/n")时, 设置: macPlugStatus = 1;
另外需要在: w710_autodetect()函数里: ----------系统启动后,网线没插上;
在printk("MAC Line-off.../n")时,设置 macPlugStatus = 0;
在printk("MAC Line-on.../n")时,设置 macPlugStatus = 1;
2,在linux-2.4.x/driver/net/w90p710_mac.h这个头文件里导出这个全局变量:
// add by guowenxue 2008.8.1
extern int macPlugStatus;
3, 另外创建了一个字符设备,专门用来获取这个状态(够奢侈的),马来西亚他们要求这样做的。代码如下:
[code]
#include "l200.h"
#include "../../net/w90p710_mac.h" //包含上面的头文件
EXPORT_SYMBOL(macPlugStatus); //导出macPlugStatus这个全局变量,因为他在整个内核空间是可见的。
static int mac_open(struct inode *inode, struct file *file)
{
return 0;
}
static int mac_release(struct inode *inode, struct file *file)
{
return 0;
}
static int mac_ioctl(struct inode *inode, struct file *file, unsigned int cmd, unsigned long arg)
{
switch(cmd)
{
case GETPLUGSTATUS: // whether network wire is plugin
return macPlugStatus; // 整个driver就是返回这个值而已~
default:
return -1;
}
return 0;
}
static struct file_operations mac_fops=
{
.ioctl = mac_ioctl,
.open = mac_open,
.release = mac_release,
};
int l200_mac_init(void)
{
if((register_chrdev(MAC_MAJOR, MAC_NAME, &mac_fops)) < 0)
{
printk("Regist L200 MAC device failure.../n");
return -ENODEV;
}
printk("Regist L200 MAC device success.../n");
return 0;
}
void l200_mac_cleanup(void)
{
unregister_chrdev(MAC_MAJOR, MAC_NAME);
printk("L200 MAC unregist ok!/n");
}
MODULE_LICENSE("GPL");
[/code]
再在linux-2.4.x/driver/char/mem.c中添加l200_mac_init(),修改Config.in,重新配置内核,编译运行就OK了~
PS:尽管这不是一个很好的方法,但他毕竟自己想到的一个办法,可算实现了功能。在应用程序上也只需打开设备,ioctl()就OK了。看来搞嵌入式还是得多学点东西~
转贴于 http://hi.baidu.com/kkernel/blog/item/ad01fd08e1ef3236e8248869.html
更多推荐
所有评论(0)