当前位置:   article > 正文

Linux上监控应用程序启动 (hook execve系统调用)_current->group_leader->comm

current->group_leader->comm

对于linux x86-64平台,hook普通的系统调用是一件比较简单的事情,可以看hook系统调用完整实例讲解。但是对于execve、fork、clone等这些系统调用的hook却并没那么简单了。

注:本文方法只适用于Linux x86-64平台 

其它CPU架构下的hook方法可以看这几篇文章:

Linux ARM64平台上Hook系统调用(以openat为例)_yg@hunter的博客-CSDN博客

Linux MIPS64下hook系统调用(kylin server v10)_yg@hunter的博客-CSDN博客

及hook的进阶方案,inline hook技术:

Linux下监控所有进程的退出事件(x86_64下hook系统调用do_exit)_yg@hunter的博客-CSDN博客

下面我们针对基于RHEL及其衍生系统CentOS的常用内核版本来详细分析之。本文同步至我的微信公众号大胖聊编程这篇文章

目录

一、在RHEL/CentOS 8.x上

二、在RHEL/CentOS 6.x 7.x上

1、execve系统调用真面目

2、stub_execve跟sys_execve关系

3、着手hook execve系统调用

(1)函数声明

(2)获取原系统调用地址

(3)替换系统调用

(4)自定义hook函数

(5)还原系统调用

三、在RHEL/CentOS 5.x上

四、写在最后


一、在RHEL/CentOS 8.x上

rhel/centos 8.x 都是基于4.18.0内核版本,跟在centos8.0上hook openat系统调用一样的方法,比较简单,具体可看hook syscall in RHEL/CentOS/OL 8.x (kernel v4.17 onwards)

完整代码示例如下:

  1. typedef asmlinkage long (*sys_call_ptr_t)(const struct pt_regs *);
  2. static sys_call_ptr_t *sys_call_table;
  3. sys_call_ptr_t old_execve;
  4. static asmlinkage long my_execve(const struct pt_regs *regs)
  5. {
  6. char __user *filename = (char *)regs->di;
  7. char user_filename[MAX_FILE_NAME_LEN] = {0};
  8. int len = 0;
  9. len = strnlen_user(filename, MAX_FILE_NAME_LEN);
  10. if(unlikely(len >= MAX_FILE_NAME_LEN)){
  11. pr_info("len[%d] grater than %d.\n", len, MAX_FILE_NAME_LEN);
  12. len = MAX_FILE_NAME_LEN-1;
  13. }
  14. long copied = strncpy_from_user(user_filename, filename, len);
  15. pr_info("%s filename:[%s], copied:%d. len:%d.\n",__func__, user_filename, copied, len);
  16. char **argv = (char **)regs->si;
  17. get_user_cmdline(argv, user_filename, MAX_FILE_NAME_LEN); // 解析出命令行
  18. pr_info("%s cmdline:[%s].\n",__func__, user_filename);
  19. return old_execve(regs);
  20. }
  21. static int __init hello_init(void)
  22. {
  23. sys_call_table = (sys_call_ptr_t *)kallsyms_lookup_name("sys_call_table");
  24. old_execve = sys_call_table[__NR_execve]; // 获取原系统调用地址
  25. write_cr0(read_cr0() & (~0x10000));
  26. sys_call_table[__NR_execve] = my_execve; // 替换成自定义的execve
  27. write_cr0(read_cr0() | 0x10000);
  28. pr_info("%s inserted.\n",__func__);
  29. return 0;
  30. }
  31. static void __exit hello_exit(void)
  32. {
  33. write_cr0(read_cr0() & (~0x10000));
  34. sys_call_table[__NR_execve] = old_execve; // 卸载时,还原回原始系统调用,否则系统会崩溃
  35. write_cr0(read_cr0() | 0x10000);
  36. pr_info("%s removed.\n",__func__);
  37. }
  38. module_init(hello_init);
  39. module_exit(hello_exit);

在centos8.0上,运行效果如下:

二、在RHEL/CentOS 6.x 7.x上

RHEL/CentOS 7.x(内核版本3.10.0) 6.x(内核版本2.6.32)的execve系统调用实现原理一样,所以hook方法也类似,比较复杂,下面详细分析下。

下面以 centos 7.6 为实验环境:

  1. [root@yglocal ~]# uname -r
  2. 3.10.0-957.el7.x86_64
  3. [root@yglocal ~]# cat /etc/redhat-release
  4. CentOS Linux release 7.6.1810 (Core)

1、execve系统调用真面目

首先,我们来看看带有execve的在系统调用符号表中有哪些:

  1. [root@yglocal ~]# grep execve /proc/kallsyms
  2. ffffffffad935b20 t audit_log_execve_info
  3. ffffffffada495a0 t do_execve_common.isra.24
  4. ffffffffada49e20 T do_execve
  5. ffffffffada4a090 T SyS_execve
  6. ffffffffada4a090 T sys_execve
  7. ffffffffada4a0c0 T compat_sys_execve
  8. ffffffffadf75320 T stub_execve
  9. ffffffffadf79450 T stub32_execve
  10. ffffffffae4a42e0 d event_exit__execve
  11. ffffffffae4a4380 d event_enter__execve
  12. ffffffffae4a4420 d __syscall_meta__execve
  13. ffffffffae4a4460 d args__execve
  14. ffffffffae4a4480 d types__execve
  15. ffffffffae70f4c0 t __event_exit__execve
  16. ffffffffae70f4c8 t __event_enter__execve
  17. ffffffffae710ac8 t __p_syscall_meta__execve

按经验来分析,execve对应到内核系统调用应该是sys_execve,地址ffffffffada4a090,我们写个程序简单验证下:

  1. static int __init test_init(void)
  2. {
  3.    sys_call_table = (sys_call_ptr_t *)kallsyms_lookup_name("sys_call_table");
  4.    old_execve = sys_call_table[__NR_execve];
  5.    printk("[info] %s. sys_call_table[__NR_execve]:0x%llx, __NR_execve:%d\n",
  6.         __func__, old_execve, __NR_execve);
  7.    printk("%s inserted.\n",__func__);
  8.    return 0;
  9. }

测试结果:

我们对比下看看:

可以清楚的看到,系统调用表中__NR_execve对应的系统调用地址是0xffffffffadf75320,也即是stub_execve,而不是sys_execve,这是怎么回事呢?

在内核源码中搜索stub_execve,可以发现,在arch\x86\um\sys_call_table_64.c源码中:

  1. #define stub_clone sys_clone
  2. #define stub_fork sys_fork
  3. #define stub_vfork sys_vfork
  4. #define stub_execve sys_execve
  5. #define stub_rt_sigreturn sys_rt_sigreturn

及arch\x86\syscalls\syscall_64.tbl中:

  1. # 64-bit system call numbers and entry vectors
  2. # The format is:
  3. # <number> <abi> <name> <entry point>
  4. # The abi is "common", "64" or "x32" for this file.
  5. 56 common clone stub_clone
  6. 57 common fork stub_fork
  7. 58 common vfork stub_vfork
  8. 59 64 execve stub_execve

 可见,sys_execve在系统调用表中被替换成了stub_execve

也就是说,应用层调用execve时,到内核层系统调用实际上是stub_execve。

2、stub_execve跟sys_execve关系

在内核源码中,可以找到stub_execve的定义,在arch\x86\kernel\entry_64.S文件中:

  1. ENTRY(stub_execve)
  2. CFI_STARTPROC
  3. addq $8, %rsp
  4. DEFAULT_FRAME 0
  5. FIXUP_TOP_OF_STACK %r11
  6. call sys_execve
  7. UNWIND_END_OF_STACK
  8. movq %rax,RAX(%rsp)
  9. RESTORE_REST
  10. jmp int_ret_from_sys_call
  11. CFI_ENDPROC
  12. END(stub_execve)

可以看出,在这段汇编代码中,call sys_execve之前都是栈平衡操作,跟普通系统调用约定不太一样,上来代码先对rsp(堆栈指针寄存器)进行了修正,说明内核在进入stub_execve之前,rsp本身就是"不准确"的,需要进行修正,而rsp不准确也意味着栈上参数寻址是不准确的,所以我们在进行替换的my_execve_func就不能简单的直接使用传递进来的参数。

再看看此文件头部的注释部分:

里面提到,正常的系统调用或中断不需要保存完整的栈帧,对应exec/fork、系统调用追踪、信号等这些是需要保存完整栈帧的。也就是说,这里在sys_execve之前,又加了一层stub_execve函数,为了保存完整栈帧。

所以调用关系明确了:

execve ---> stub_execve ---> sys_execve

3、着手hook execve系统调用

既然stub_execve汇编代码里,最终还是调用了sys_execve,那么我们可以采用hook进阶:linux下捕获进程的退出中的方法,通过修改call指令的offset实现跳转到自定义函数。

核心实现代码:

  1. static int replace_kernel_func(unsigned long handler,
  2. unsigned long orig_func, unsigned long my_func)
  3. {
  4. unsigned char *tmp_addr = (unsigned char*)handler;
  5. int i = 0;
  6. do{
  7. /* in x86_64 the call instruction opcode is 0x8e,
  8. * occupy 1+4 bytes(E8+offset) totally
  9. */
  10. if(*tmp_addr == 0xe8){
  11. int* offset = (int*)(tmp_addr+1);
  12. if(((unsigned long)tmp_addr + 5 + *offset) == orig_func){
  13. printk("call:0x%08x, offset:%08x, old_func:%08x.\n",
  14. (unsigned int)tmp_addr, *offset, orig_func);
  15. /* replace with my_func relative addr(offset) */
  16. *offset=my_func-(unsigned long)tmp_addr-5;
  17. printk("call:0x%08x, offset:%08x, new_func:%08x.\n",
  18. (unsigned int)tmp_addr, *offset, my_func);
  19. return 1;
  20. }
  21. }
  22. tmp_addr++;
  23. }while(i++ < 128);
  24. return 0;
  25. }

具体就是:从stub_execve函数入口,遍历其代码段,找到call指令(0xe8),然后通过计算,比较call指令后的offset是否就是sys_execve的地址,若是的话,则证明该条指令就是call sys_execve,然后就可以重新计算新的offset,让它指向自定义的my_hook_execve函数入口处,替换新计算出的offset,这样就达到了我们目的,代码会执行到我们的my_hook_execve函数中。

下面开始编码实现。

(1)函数声明

函数声明如下:

  1. typedef asmlinkage long (*execve_t)(const char __user *filename, const char __user * const __user *argv,
  2. const char __user *const __user *envp, struct pt_regs *);
  3. asmlinkage long my_stub_execve(const char __user *filename, const char __user * const __user *argv,
  4. const char __user *const __user *envp, struct pt_regs *);

(2)获取原系统调用地址

保存原始stub_execve、sys_execve地址:

  1. old_stub_execve = (execve_t)sys_call_table_ptr[__NR_execve];
  2. orig_execve_func = kallsyms_lookup_name("sys_execve");

注意:在rhel/centos 6.x(内核版本2.6.32) 上kallsyms_lookup_name并未导出,不能直接使用,这里可以使用kprobe方法获取kallsyms_lookup_name函数地址:

  1. #include <linux/kprobes.h>
  2. static struct kprobe kp={
  3. .symbol_name = "kallsyms_lookup_name",
  4. };
  5. typedef unsigned long (*kallsyms_lookup_name_t)(const char *name);
  6. static kallsyms_lookup_name_t orig_kallsyms_lookup_name = NULL;
  7. int get_kallsyms_lookup_name(void)
  8. {
  9. int ret = register_kprobe(&kp);
  10. if(ret < 0){
  11. printk("[err] %s. register_kprobe failed, ret:%d\n", __FUNCTION__, ret);
  12. return ret;
  13. }
  14. printk("[info] %s. kprobe at addr:%p, ret:%d\n", __FUNCTION__, kp.addr, ret);
  15. orig_kallsyms_lookup_name = (kallsyms_lookup_name_t)(void*)kp.addr;
  16. unregister_kprobe(&kp);
  17. return ret;
  18. }

之后可以这样获取系统调用表地址:

  1. if(get_kallsyms_lookup_name() < 0){
  2. printk("[err] %s failed!\n", __FUNCTION__);
  3. return -1;
  4. }
  5. sys_call_table = orig_kallsyms_lookup_name("sys_call_table");

同样方法获取sys_execve地址:

orig_execve_func = orig_kallsyms_lookup_name("sys_execve");

(3)替换系统调用

修改offset,指向自定义my_hook_execve处:

  1. write_cr0(read_cr0() & (~0x10000));
  2. replace_kernel_func(stub_execve_func, orig_execve_func, (unsigned long)my_hook_execve);
  3. write_cr0(read_cr0() | 0x10000)

(4)自定义hook函数

my_hook_execve里,可以正常读取参数,打印出应用程序相关信息,代码实现:

  1. asmlinkage long my_hook_execve(const char __user *filename, const char __user * const __user *argv,
  2.    const char __user *const  __user *envp, struct pt_regs *regs)
  3. {
  4.     long value = -1;
  5.    char absolutepath[360] = {0};
  6.    int ret_num = copy_from_user(absolutepath, filename, 358);
  7.    printk("[info] %s. tgid:%d, tgcomm:%s, pid:%d, comm:%s. filename:%s.\n", __FUNCTION__,
  8.       current->tgid, current->group_leader->comm, current->pid, current->comm, absolutepath);
  9.     
  10.    return orig_execve_func(filename, argv, envp, regs);
  11. }

(5)还原系统调用

最后在卸载ko卸载函数,即module_exit调用的函数里,替换回原系统调用,保证我们的lkm被卸载后,系统正常运行:

  1. write_cr0(read_cr0() & (~0x10000));
  2. replace_kernel_func(stub_execve_func, (unsigned long)my_hook_execve, orig_execve_func);
  3. write_cr0(read_cr0() | 0x10000);

在centos7.6 6.6上,运行效果如下:

三、在RHEL/CentOS 5.x上

在rhel/centos 5.x上,内核版本2.6.18,上述方法都失效了,但是可以自己写汇编函数my_stub_execve,自己处理栈平衡,来替换sys_call_table[__NR_execve]指向为my_stub_execve函数入口地址,在my_stub_execve里面调用自己的my_hook_execve函数,写入文件my_stub_execve.S中,代码如下:

  1. .text
  2. .global my_stub_execve
  3. my_stub_execve:
  4. pushq %rbx
  5. pushq %rdi
  6. pushq %rsi
  7. pushq %rdx
  8. pushq %rcx
  9. pushq %rax
  10. pushq %r8
  11. pushq %r9
  12. pushq %r10
  13. pushq %r11
  14. call my_hook_execve
  15. test %rax, %rax
  16. movq %rax, %rbx
  17. pop %r11
  18. pop %r10
  19. pop %r9
  20. pop %r8
  21. pop %rax
  22. pop %rcx
  23. pop %rdx
  24. pop %rsi
  25. pop %rdi
  26. jz my_stub_execve_ret
  27. movq %rbx, %rax
  28. pop %rbx
  29. ret
  30. my_stub_execve_ret:
  31. pop %rbx
  32. jmp *orig_sys_call_table(, %rax, 8)

替换stub_execve为自己编写的my_stub_execve:

  1. write_cr0(read_cr0() & (~0x10000));
  2. sys_call_table_ptr[__NR_execve] = (execve_t)my_stub_execve;
  3. write_cr0(read_cr0() | 0x10000);

卸载模块的地方,替换回去:

  1. write_cr0(read_cr0() & (~0x10000));
  2. sys_call_table[__NR_execve] = (execve_t)old_stub_execve;
  3. write_cr0(read_cr0() | 0x10000);

另外需要定义一个全局系统调用表指针,汇编代码中需要(orig_sys_call_table)

  1. void *orig_sys_call_table[__NR_syscall_max];
  2. int i = 0;
  3. for( ; i < __NR_syscall_max - 1; i ++) {
  4.    orig_sys_call_table[i] = sys_call_table[i];
  5. }    

特别注意:此时my_hook_execv的最后不能在调用orig_execve_func了,直接return 0即可,my_hook_execve函数改成:

  1. asmlinkage long my_hook_execve(const char __user *filename, const char __user * const __user *argv,
  2.    const char __user *const  __user *envp, struct pt_regs *regs)
  3. {
  4.    char tmp_buf[262] = {0};
  5.    int ret_num = copy_from_user(tmp_buf, filename, 260);
  6.    printk("[info] %s. tgid:%d, tgcomm:%s, pid:%d, comm:%s. filename:%s.\n", __FUNCTION__,
  7.      current->tgid, current->group_leader->comm, current->pid, current->comm, tmp_buf);
  8.    memset(tmp_buf, 0, 260);
  9.    get_user_cmdline(argv, tmp_buf, 260);
  10.    printk("[cmdline]:%s\n", tmp_buf);
  11.    return 0;
  12. }

因为在我们写的my_stub_execve汇编代码里的最后会去调用orig_execve_func:

  1. hook_stub_execve_ret:
  2.    pop     %rbx
  3.    jmp     *orig_sys_call_table(, %rax, 8)

我们的my_hook_execve只相当于嵌入到他们中间执行了。

其它部分的代码跟centos6.x 7.x上一样。

在rhel5.8上,运行结果图如下:

四、写在最后

到此,对于execve系统调用的hook方法都介绍完了,跟之前hook进阶:linux下捕获进程的退出算是姊妹篇了,感兴趣的可以看看这篇文章,或者关注我的微信公众号大胖聊编程,也可以加好友一起交流学习。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/160382?site
推荐阅读
相关标签
  

闽ICP备14008679号