Linux内核版本2.6中已经不再导出系统调用符号表了。因此,如果想实现劫持系统调用,就得想办法找到系统调用表的地址。网上应该可以搜到相关的实现。我这里找到了albcamus兄的精华文章,并在内核版本2.6.18.3上实践了其中的代码。这里总结一下。

本文欢迎自由转载,但请标明出处和本文链接,并保持本文的完整性。

Dec 2, 2009

一、代码及实现

(一) 劫持open系统调用的代码

内核态实现劫持系统调用的代码如下,来自参考链接1,即albcamus兄提供的代码。我这里屏蔽了一些代码,仅实现了劫持open系统调用。

#include

#include

#include

#include

#include

#include

#include

#include

#include

#include

#include

#include

#include

#include

#include

MODULE_DESCRIPTION("Intercept the system

call table in Linux");

MODULE_AUTHOR("alert7 (alert7@xfocus.org)

\n\t\talbcamus ");

MODULE_LICENSE("GPL");

/* comment the following line to shut me up */

#define INTERCEPT_DEBUG

#ifdef INTERCEPT_DEBUG

#define dbgprint(format,args...) \

printk("intercept: function:%s-L%d: "format, __FUNCTION__,

__LINE__, ##args);

#else

#define dbgprint(format,args...)do {} while(0);

#endif

/**

* the system call table

*/

void **my_table;

unsigned int orig_cr0;

/**

* the original syscall functions

*/

asmlinkage long (*old_open) (char __user

*filename, int flags, int mode);

asmlinkage int(*old_execve) (struct pt_regs regs);

/** do_execve and do_fork */

unsigned int can_exec_fork = 0;

int(*new_do_execve) (char * filename,

char __user *__user *argv,

char __user *__user *envp,

struct pt_regs * regs);

struct idtr {

unsigned short limit;

unsigned int base;

} __attribute__ ((packed));

struct idt {

unsigned short off1;

unsigned short sel;

unsigned char none, flags;

unsigned short off2;

} __attribute__ ((packed));

#if 0

/**

*check

if we can intercept fork/vfork/clone/execve or not

*

*return

: 0 for no, 1 for yes

*/

struct kprobe kp_exec;

unsigned int can_intercept_fork_exec(void)

{

int

ret = 0;

#ifndef CONFIG_KPROBES

return ret;

#endif

kp_exec.symbol_name = "do_execve";

ret =

register_kprobe(&kp_exec);

if

(ret != 0 ) {

dbgprint("cannot find do_execve by kprobe.\n");

return 0;

}

new_do_execve = ( int (*)

(char *,

char __user * __user *,

char __user * __user *,

struct pt_regs *

)

) kp_exec.addr;

dbgprint("do_execve at %p\n", (void *)kp_exec.addr);

unregister_kprobe(&kp_exec);

return 1;

}

#endif

/**

* clear WP bit of CR0, and return the original

value

*/

unsigned int clear_and_return_cr0(void)

{

unsigned int cr0 = 0;

unsigned

int ret;

asm

volatile ("movl %%cr0, %%eax"

: "=a"(cr0)

);

ret =

cr0;

/*

clear the 20 bit of CR0, a.k.a WP bit */

cr0

&= 0xfffeffff;

asm

volatile ("movl %%eax, %%cr0"

:

: "a"(cr0)

);

return ret;

}

/** set CR0 with new value

*

* @val : new value to set in cr0

*/

void setback_cr0(unsigned int val)

{

asm

volatile ("movl %%eax, %%cr0"

:

: "a"(val)

);

}

/**

* Return the first appearence of NEEDLE in

HAYSTACK.

* */

static void *memmem(const void *haystack,

size_t haystack_len,

const void *needle, size_t needle_len)

{/*{{{*/

const

char *begin;

const

char *const last_possible

=

(const char *) haystack + haystack_len - needle_len;

if

(needle_len == 0)

/* The first occurrence of the empty string is deemed to occur at

the beginning of the string.*/

return (void *) haystack;

/*

Sanity check, otherwise the loop might search through the whole

memory.*/

if

(__builtin_expect(haystack_len < needle_len, 0))

return NULL;

for

(begin = (const char *) haystack; begin <= last_possible;

++begin)

if (begin[0] == ((const char *) needle)[0]

&& !memcmp((const void *) &begin[1],

(const void *) ((const char

*) needle + 1),

needle_len - 1))

return (void *) begin;

return NULL;

}/*}}}*/

/**

* Find the location of sys_call_table

*/

static unsigned long get_sys_call_table(void)

{/*{{{*/

/* we'll read first 100 bytes of int $0x80 */

#define OFFSET_SYSCALL 100

struct idtr idtr;

struct idt idt;

unsigned sys_call_off;

unsigned retval;

char

sc_asm[OFFSET_SYSCALL], *p;

/*

well, let's read IDTR */

asm("sidt %0":"=m"(idtr)

:

:"memory" );

dbgprint("idtr base at 0x%X, limit at 0x%X\n", (unsigned

int)idtr.base,(unsigned short)idtr.limit);

/*

Read in IDT for vector 0x80 (syscall) */

memcpy(&idt, (char *) idtr.base + 8 * 0x80, sizeof(idt));

sys_call_off = (idt.off2 << 16) | idt.off1;

dbgprint("idt80: flags=%X sel=%X off=%X\n",

(unsigned) idt.flags, (unsigned) idt.sel, sys_call_off);

/* we

have syscall routine address now, look for syscall table

dispatch (indirect call) */

memcpy(sc_asm, (void *)sys_call_off, OFFSET_SYSCALL);

/**

*

Search opcode of `call sys_call_table(,eax,4)'

*/

p =

(char *) memmem(sc_asm, OFFSET_SYSCALL, "\xff\x14\x85", 3);

if (p

== NULL)

return 0;

retval = *(unsigned *) (p + 3);

if

(p) {

dbgprint("sys_call_table at 0x%x, call dispatch at 0x%x\n",

retval, (unsigned int) p);

}

return

retval;

#undef OFFSET_SYSCALL

}/*}}}*/

/**

* new_open - replace the original sys_open when

initilazing,

*as well as be got rid of when removed

*/

asmlinkage long new_open(char *filename, int

flags, int mode)

{

dbgprint("call open()\n");

return old_open (filename, flags, mode);

}

/**

* new_execve - you should change this function

whenever the kernel's sys_execve()

* changes

*/

asmlinkage int new_execve(struct pt_regs regs)

{

int

error;

char

*filename;

dbgprint("Hello\n");

filename = getname( (char __user *) regs.ebx );

error

= PTR_ERR(filename);

if (

IS_ERR(filename) )

goto out;

dbgprint("file to execve: %s\n", filename);

error

= new_do_execve(filename,

(char __user * __user *)

regs.ecx,

(char __user * __user *)

regs.edx,

&regs);

if

(error == 0) {

task_lock(current);

current->ptrace &= ~PT_DTRACE;

task_unlock(current);

set_thread_flag(TIF_IRET);

}

putname (filename);

out:

return error;

}

static int intercept_init(void)

{

my_table = (void **)get_sys_call_table();

if

(my_table == NULL)

return -1;

dbgprint("sys call table address %p\n", (void *) my_table);

#define REPLACE(x) old_##x =

my_table[__NR_##x];\

my_table[__NR_##x] = new_##x

REPLACE(open);

#if 0

can_exec_fork = can_intercept_fork_exec();

if(can_exec_fork == 1)

REPLACE(execve);

#endif

#undef REPLACE

return 0;

}

static int __init this_init(void)

{

int

ret;

printk("syscall intercept: Hi, poor linux!\n");

orig_cr0 = clear_and_return_cr0();

ret =

intercept_init();

setback_cr0(orig_cr0);

return ret;

}

static void __exit this_fini(void)

{

printk("syscall intercept: bye, poor linux!\n");

#define RESTORE(x) my_table[__NR_##x] = old_##x

orig_cr0 = clear_and_return_cr0();

RESTORE(open);

#if 0

if(can_exec_fork == 1)

RESTORE(execve);

#endif

setback_cr0(orig_cr0);

#undef RESTORE

}

module_init(this_init);

module_exit(this_fini);

(二) 编译及实践

Makefile如下:

obj-m:=hack_open.o

EXTRA_CFLAGS :=

-Dsymname=sys_call_table

KDIR:= /lib/modules/$(shell uname -r)/build

PWD:= $(shell pwd)

default:

make -C $(KDIR) SUBDIRS=$(PWD) modules

clean:

rm -rf .*.cmd *.mod.c *.o *.ko .tmp*

*.symvers

编译之后,加载模块,然后查看日志信息

Sep 24 19:06:49

localhost kernel: intercept: function:get_sys_call_table-L220: sys_call_table

at 0xc11f14e0, call

dispatch at 0xcebeceaa

Sep 24 19:06:49 localhost kernel: intercept: function:intercept_init-L276: sys

call table address c11f14e0

Sep 24 19:06:50 localhost kernel: intercept: function:new_open-L234: hello

Sep 24 19:07:00 localhost last message repeated 460 times

可见open系统调用执行次数之频繁。

--未完待续

linux 网络劫持编程,Linux下实现劫持系统调用的总结(上)--代码及实现相关推荐

  1. 从入门到精通ARM(4412)-Linux内核驱动编程【下】-李志勇-专题视频课程

    从入门到精通ARM(4412)-Linux内核驱动编程[下]-247人已学习 课程介绍         嵌入式绝对是当前IT领域最炙手可热的话题了.其主要应用领域涵盖与人类相关的各行各业: * 消费电 ...

  2. linux 网络使用log,linux 网络命令last、lastlog、traceroute、netstat

    last /usr/bin/last 语法:last 功能:列出目前与过去登入系统的用户信息 reboot 是重启信息 lastlog lastlog -u 502(用户ID) traceroute ...

  3. linux 网络端口状态,Linux下用netstat查看网络状态、端口状态(转)

    转:http://blog.csdn.net/guodongdongnumber1/article/details/11383019 在linux一般使用netstat 来查看系统端口使用情况步. n ...

  4. linux网络流量统计,linux下网络流量监控统计

    最近在做虚拟化迁入评估,其中很重要的一项就是流量的问题.现在部署一个工具和脚本用来统计服务器的网络流量. linux下监控流量的工具有很多,比如ifstat.iftop等. 个人还是喜欢ifstat, ...

  5. linux 虚拟机大量udp请求失败_理解 Linux 网络栈:Linux 网络协议栈简单总结分析...

    1. Linux 网络路径 1.1 发送端 1.1.1 应用层 (1) Socket 应用层的各种网络应用程序基本上都是通过 Linux Socket 编程接口来和内核空间的网络协议栈通信的.Linu ...

  6. 理解 Linux 网络栈:Linux 网络协议栈简单总结

    1. Linux 网络路径 1.1 发送端 1.1.1 应用层 (1) Socket 应用层的各种网络应用程序基本上都是通过 Linux Socket 编程接口来和内核空间的网络协议栈通信的.Linu ...

  7. linux网络驱动架构,Linux网络体系架构和网卡驱动设计

    Linux网络体系架构 1.Linux的协议栈层次 2.Linux的网络子系统架构 Linux的协议栈层次 Linux的优点之一在于它丰富而稳定的网络协议栈.其范围从协议无关层(例如通用socket层 ...

  8. linux网络协议栈招聘,Linux 网络协议栈开发(一)ping命令

    linux网络开发中比较常用的命令之一是ping,最近一直再查rtl的模块连接问题,使用ping命令后一段时间,模块就卡主了感觉,不能完成基本的网络通信了,所以来查一查,我通常使用了ping命令加上要 ...

  9. linux 文件操作 编程,Linux系统编程------------文件操作(基础)

    一.文件操作 1.1 Linux文件系统结构 1.1.1  Linux常见系统目录 /bin  :  存放普通系统可执行的命令(ls wc等) /sbin  :  存放系统管理程序(fsck等) /b ...

  10. linux网络共享文件夹,[Linux] - Windows与Linux网络共享文件夹挂载方法

    Windows与Linux网络SMB方式文件夹共享挂载 本示例系统: Windows 2003+ Linux-Centos/Ubuntu 本示例全为命令行操作,如何使用Windows.Linux命令行 ...

最新文章

  1. 第四范式联合浪潮商用机器发布AI一体机,接入AI像使用手机一样简单
  2. 配置单节点伪分布式Hadoop
  3. BZOJ 3309 DZY Loves Math
  4. Java基础day11
  5. jdbc-------JDBCUtil类 工具类
  6. 集成Silverlight 2的AJAX框架 Visual WebGui
  7. 数据库原理及应用教程 第4版|微课版答案 陈志泊主编 课后习题答案
  8. 【雕刻机】使用雕刻机雕刻PCB
  9. 用友nc633与oracle,用友NC和ORACLE数据库配置教程.doc
  10. Python将base64编码转换为图片并存储
  11. 2018个人年度工作总结与2019工作计划(互联网)
  12. 恶魔和梦魇的私语------- 关于软件开发的务虚主义对话(3)
  13. (PTA)7-2 比较大小 (10分)
  14. 选择适合你的虚拟现实体验
  15. 照片生成漫画头像的软件
  16. RV32I基础整数指令集
  17. Uncaught TypeError: Cannot read property 'name' of null怎么处理
  18. 【转】七个受用一生的心理寓言
  19. 程序员跳槽B站遭老东家索赔200万,法院判定无需赔偿,竞业限制不应阻碍工程师再就业...
  20. 再练动态规划——(2)自然数拆分Lunatic版

热门文章

  1. 完整案例:实现延迟队列的两种方法
  2. Redis 性能优化的 13 条军规!史上最全
  3. web.config中配置字符串中特殊字符的处理
  4. Android--快速接入微信支付
  5. YOLO v3 安装并训练自己数据
  6. 输入快捷键显示未知命令_「干货」华为VRP基础和常用命令了解一下
  7. 画流程图activiti流程图_干货!小白也能一天画100张高逼格流程图
  8. 湖北经济学院的计算机怎么样,湖北经济学院怎么样名气高吗?真实排名及实力如何?是一本吗...
  9. 保存图像_06 - matplotlib中应知应会numpy存储、交换图像
  10. 根据端口不同来切换站点_根据不同高温气体对窑炉的侵蚀,来选用相应的耐火材料...