ImageVerifierCode 换一换
格式:DOCX , 页数:26 ,大小:23.80KB ,
资源ID:7718651      下载积分:3 金币
快捷下载
登录下载
邮箱/手机:
温馨提示:
快捷下载时,用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)。 如填写123,账号就是123,密码也是123。
特别说明:
请自助下载,系统不会自动发送文件的哦; 如果您已付费,想二次下载,请登录后访问:我的下载记录
支付方式: 支付宝    微信支付   
验证码:   换一换

加入VIP,免费下载
 

温馨提示:由于个人手机设置不同,如果发现不能下载,请复制以下地址【https://www.bingdoc.com/d-7718651.html】到电脑端继续下载(重复下载不扣费)。

已注册用户请登录:
账号:
密码:
验证码:   换一换
  忘记密码?
三方登录: 微信登录   QQ登录  

下载须知

1: 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。
2: 试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓。
3: 文件的所有权益归上传用户所有。
4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
5. 本站仅提供交流平台,并不能对任何下载内容负责。
6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

版权提示 | 免责声明

本文(linux不同版本间驱动加载方法文档格式.docx)为本站会员(b****3)主动上传,冰点文库仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知冰点文库(发送邮件至service@bingdoc.com或直接QQ联系客服),我们立即给予删除!

linux不同版本间驱动加载方法文档格式.docx

1、MODULE_LICENSE(GPL);MODULE_AUTHOR(wztstruct module *m = &_this_module;int print_module_test(void) struct module *mod; list_for_each_entry(mod, &m-list, list) printk(%sn, mod-name); return NULL;static int list_print_init(void)load list_print module.n print_module_test(); return 0;static void list_pri

2、nt_exit(void)unload list_print module.nmodule_init(list_print_init);module_exit(list_print_exit);我们在centos5.3环境中编译一下:rootlocalhost list# uname -aLinux localhost.localdomain 2.6.18-128.el5 #1 SMP Wed Jan 21 10:44:23 EST 2009 i686 i686 i386 GNU/Linux然后拷贝到另一台主机centos5.1xen上:rootlocalhost # uname -aLinu

3、x localhost.localdomain 2.6.18-53.el5xen #1 SMP Mon Nov 12 03:26:12 EST 2007 i686 i686 i386 GNU/Linux用insmod加载:rootlocalhost # insmod list.koinsmod: error inserting list.ko: -1 Invalid module format报错了,在看下dmesg的信息:rootlocalhost # dmesg|tail -n 1list: disagrees about version of symbol struct_module先不

4、管这是什么, 总之我们的模块在另一台2.6.18的主机中加载失败。 通常的做法是要在主机中对源代码进行编译,然后才能加载成功, 但是如果主机中缺少内核编译环境的话, 我们的rootkit就不能编译, 也不能安装在主机之中,这是多么尴尬的事情:)。 没错, 这就是linux kernel开发的特点, 你别指望像windows驱动一样,编译一个驱动, 然后可以满世界去装_. 一些rootkit开发者抛弃了lkm类型rk的开发, 转而去打kmem, mem的注意,像sk,moodnt这样的rk大家都喜欢, 可以在用户层下动态patch内核,不需要编译环境, wget下来,install即可。但是它也

5、有很多缺点,比如很不稳定,而且在2.6.x后内核已经取消了kmem这个设备, mem文件也做了映射和读写的限制。 rk开发者没法继续sk的神话了。反过来, 如果我们的lkm后门不需要编译环境,也可以达到直接insmod的目的,这是件多么美好的事情,而且lkm后门更加稳定,还不用像sk在内核中添加了很多自己的数据结构。2、内核是怎么实现的 我们去看看内核在加载模块的时候都干了什么, 或许我们可以发现点bug, 然后做点手脚,欺骗过去:) grep下dmesg里的关键字, 看看它在哪个文件中:rootlocalhost linux-2.6.18# grep -r -i disagrees abou

6、t kernel/kernel/module.c:%s: disagrees about version of symbol %sn,2.6.18/kernel/module.c:insmod调用了sys_init_module这个系统调用, 然后进入load_module这个主函数,它解析elf格式的ko文件,然后加载到内核中:/* Allocate and load the module: note that size of section 0 is always zero, and we rely on this for optional sections. */static struc

7、t module *load_module(void _user *umod, unsigned long len, const char _user *uargs). if (!check_modstruct_version(sechdrs, versindex, mod) err = -ENOEXEC; goto free_hdr; modmagic = get_modinfo(sechdrs, infoindex, vermagic /* This is allowed: modprobe -force will invalidate it. */modmagic) add_taint(

8、TAINT_FORCED_MODULE); printk(KERN_WARNING no version magic, tainting kernel.n mod- else if (!same_magic(modmagic, vermagic) printk(KERN_ERR version magic %s should be nname, modmagic, vermagic);check_modstruct_version就是用来计算模块符号的一些crc值,不相同就会出现我们在dmesg里看到的“disagrees about version of symbol”信息。 get_mod

9、info取得了内核本身的vermagic值,然后用same_magic函数和内核的vermagic去比较,不同也会使内核加载失败。 所以在这里,我们看到内核对模块验证的时候采用了2层验证的方法:模块crc值和vermagic检查。继续跟踪check_modstruct_version, 现在的内核默认的都开启了CONFIG_MODVERSIONS, 如果没有指定这个选项,函数为空,我们的目的是要在As, Centos下安装模块,redhat不是吃干饭的, 当然开了MODVERSIONS选项。static inline int check_modstruct_version(Elf_Shdr *

10、sechdrs, unsigned int versindex, struct module *mod) const unsigned long *crc; struct module *owner;_find_symbol(struct_module, &owner, &crc, 1) BUG(); return check_version(sechdrs, versindex, , mod, crc);_find_symbol找到了struct_module这个符号的crc值,然后调用check_version去校验:static int check_version(Elf_Shdr *s

11、echdrs, const char *symname, struct module *mod, const unsigned long *crc) unsigned int i, num_versions; struct modversion_info *versions; /* Exporting module didnt supply crcs? OK, were already tainted. */crc) return 1; versions = (void *) sechdrsversindex.sh_addr; num_versions = sechdrsversindex.s

12、h_size / sizeof(struct modversion_info); for (i = 0; i linux/compiler.hMODULE_INFO(vermagic, VERMAGIC_STRING);struct module _this_module_attribute_(section(.gnu.linkonce.this_module) = .name = KBUILD_MODNAME, .init = init_module,#ifdef CONFIG_MODULE_UNLOAD .exit = cleanup_module,#endif;static const

13、struct modversion_info _versions_attribute_used_versions 0x89e24b9c, , 0x1b7d4074, printkstatic const char _module_depends.modinfo) =depends=;MODULE_INFO(srcversion, 26DB52D8A56205333D414B9这个文件是模块在编译的时候,调用了linux-2.6.18/scripts/modpost这个文件生成的。里面增加了2个小节.gnu.linkonce.this_module和_versions。 _versions小节的

14、内容就是一些字符串和值组成的数组,check_version就是解析这个小节去做验证。 这里还有一个MODULE_INFO宏用来生成模块的magic字符串,这个在以后的vermagic中要做验证。先看下vermagic的格式:rootlocalhost list# modinfo list.kofilename: list.koauthor: wztlicense: GPLsrcversion: 26DB52D8A56205333D414B9depends:vermagic: 2.6.18-128.el5 SMP mod_unload 686 REGPARM 4KSTACKS gcc-4.1这

15、里可以看到vermagic跟内核版本,smp,gcc版本,内核堆栈大小都有关。/* First part is kernel version, which we ignore. */static inline int same_magic(const char *amagic, const char *bmagic) amagic += strcspn(amagic, bmagic += strcspn(bmagic, return strcmp(amagic, bmagic) = 0;same_magic忽略了对内核版本的判断, 直接比较后面的值。3、怎样去突破 知道了内核是怎么实现的了,

16、下面开始想办法绕过这些验证: 3.1 怎么突破crc验证: 在仔细看下代码:check_version在循环中只是在寻找struct_module符号, 如果没找到呢? 它会直接返回1! 没错, 这是一个逻辑bug,在正常情况下,module必会有一个struct_module的符号, 这是modpost生成的。如果我们修改elf文件,把struct_module这个符号改名,岂不是就可以绕过crc验证了吗? 先做个实验看下:.mod.c是由modpost这个工具生成的, 它在linux-2.6.18/scripts/Makefile.modpost文件中被调用, 去看下:PHONY += _

17、modpost_modpost: $(wildcard vmlinux) $(modules:.ko=.o) FORCE $(call cmd,modpost)我们用一个很土的方法, 就是在编译模块的时候,modpost生成.mod.c文件后, 暂停下编译,sleep 30秒吧,我们用这个时间去改写下.mod.c, 把struct_module换个名字。 sleep 30随便将struct_module改个名:stauct_module我们是在centos5.3下编译的, 然后拷贝到centos5.1下, 在执行下insmod看下:rootlocalhost # dmesg|tailata_p

18、iixlibatasd_modscsi_modext3jbdehci_hcdohci_hcduhci_hcd成功了! 这跟我们预期的一样, 我们用这个逻辑bug绕过了模块的crc验证! 这个bug直到2.6.31版本中才得到修正。 我们可以用这种方法在redhat主机中任意安装模块了。 那么怎样绕过在2.6.31以后的内核呢?看下它是怎么修补的: if (strcmp(versionsi.name, symname) ! continue; if (versionsi.crc = *crc) return 1; DEBUGP( *crc, versionsi.crc); goto bad_ve

19、rsion; no symbol version for %snbad_version:如果没找到struct_module也会返回0, 这样我们就必须将struct_module的值改为正确后, 才能继续安装。如何找到模块符号的crc值呢? 我们可以去找目标主机中那些已被系统加载的模块的crc值,如ext3文件系统的模块, 自己写个程序去解析elf文件, 就可以得到某些符号的crc值了。还有没有更简单的方法呢?去/boot目录下看看,symvers-2.6.18-128.el5.gz貌似和crc有关,gunzip解压后看看:rootlocalhost boot# grep struct_module symvers-2.6.18-128.el5 0x89e24b9c struct_module vmlinux EXPORT_SYMBOL原来内核中所有符号的crc值都保存在这个文件中。如何改写struct_module的值呢,可以用上面那个土方法,或者自己写程序去解析elf文件, 然后改写其值。本文

copyright@ 2008-2023 冰点文库 网站版权所有

经营许可证编号:鄂ICP备19020893号-2