免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 932 | 回复: 0
打印 上一主题 下一主题

使用kprobes动态查看kernel状态 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2007-08-23 16:27 |只看该作者 |倒序浏览

                先放几个链接:
An introduction to KProbes
使用 Kprobes 调试内核
使用 SystemTap 调试内核
用kprobes实现内核反射机制
更详细的内容可以阅读linux-2.6.21/Documentation/kprobes.txt
下面是自己写的一个测试脚本: (和上文的eg雷同)
// 修改红色部分内容,以满足自己需要。
#include
#include
#include
#define DPRINTK(fmt, args...) printk(KERN_ALERT fmt, ##args)
MODULE_AUTHOR("guqing");
MODULE_LICENSE("GPL");
struct kprobe kp;
/* pre_handler: this is called just before the probed instruction is
*       executed.
*/
int handler_pre(struct kprobe *p, struct pt_regs *regs) {
        DPRINTK("pre_handler: p->addr=0x%p, eflags=0x%lx\n",p->addr, regs->eflags);
        return 0;
}
/* post_handler: this is called after the probed instruction is executed
*       (provided no exception is generated).
*/
void handler_post(struct kprobe *p, struct pt_regs *regs, unsigned long flags) {
        DPRINTK("post_handler: p->addr=0x%p, eflags=0x%lx \n", p->addr, regs->eflags);
}
/* fault_handler: this is called if an exception is generated for any
*       instruction within the fault-handler, or when Kprobes
*       single-steps the probed instruction.
*/
int handler_fault(struct kprobe *p, struct pt_regs *regs, int trapnr) {
        DPRINTK("fault_handler:p->addr=0x%p, eflags=0x%lx\n", p->addr, regs->eflags);
        return 0;
}
static int __init hello_init(void)
{
        kp.pre_handler = handler_pre;
        kp.post_handler = handler_post;
        kp.fault_handler = handler_fault;
        kp.symbol_name = "do_fork";
        if (register_kprobe(&kp)
               
               
               
               
               

本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/7356/showart_366157.html
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP