Windows Filesystem filter driver
参考:http://www.codeproject.com/Articles/43586/File-System-Filter-Driver-Tutorial
关键点:
To perform attaching, we create a new device object with the device extension (call
IoCreateDevice
) and the propagate device object flags from the device object we are trying to attach to (DO_BUFFERED_IO
,DO_DIRECT_IO
,FILE_DEVICE_SECURE_OPEN
). Then, we callIoAttachDeviceToDeviceStackSafe
in a loop with a delay in the case of failure. It is possible for this attachment request to fail because the device object has not finished initialization. This situation can occur if we try to mount the filter that was loaded as the volume only. When attaching is finished, we save the “attached to” device object to the device extension and clear theDO_DEVICE_INITIALIZING
flag. The device extension is shown below:
首先创建一个hookDevice,指定我们正在操作的driver为它服务;
然后使用IoAttachDeviceByPointer或者IoAttachDeviceToDeviceStack,将hookDevice放到targetDevice所在Dev Stack的顶部,这样,当有IRP过来时,会先经过hookDevice,即先调用我们的Driver进行处理,再传给下一层driver进行处理。
The IoAttachDeviceToDeviceStack routine attaches the caller's device object to the highest device object in the chain and returns a pointer to the previously highest device object.
下面以例子说明
kd> !drvobj atapi
Driver object (867ce610) is for:
\Driver\atapi
Driver Extension List: (id , addr)
(f744e8d8 867d2430)
Device Object list:
86758b00 8675ab00 86790b00 86786030
86787030
kd> dt _DRIVER_OBJECT 0x867ce610
ntdll!_DRIVER_OBJECT
+0x000 Type : 0n4
+0x002 Size : 0n168
+0x004 DeviceObject : 0x86758b00 _DEVICE_OBJECT
+0x008 Flags : 0x12
+0x00c DriverStart : 0xf743a000 Void
+0x010 DriverSize : 0x17480
+0x014 DriverSection : 0x867ebbc0 Void
+0x018 DriverExtension : 0x867ce6b8 _DRIVER_EXTENSION
+0x01c DriverName : _UNICODE_STRING "\Driver\atapi"
+0x024 HardwareDatabase : 0x80670260 _UNICODE_STRING "\REGISTRY\MACHINE\HARDWARE\DESCRIPTION\SYSTEM"
+0x028 FastIoDispatch : (null)
+0x02c DriverInit : 0xf744f5f7 long atapi!GsDriverEntry+0
+0x030 DriverStartIo : 0xf74417c6 void atapi!IdePortStartIo+0
+0x034 DriverUnload : 0xf744b204 void atapi!IdePortUnload+0
+0x038 MajorFunction : [28] 0xf7444572 long atapi!IdePortAlwaysStatusSuccessIrp+0
表明,驱动名称为apapi,它一共为5个device提供服务,我们来看一下其中第一个device object
kd> dt _DEVICE_OBJECT 0x86758b00
ntdll!_DEVICE_OBJECT
+0x000 Type : 0n3
+0x002 Size : 0x234
+0x004 ReferenceCount : 0n0
+0x008 DriverObject : 0x867ce610 _DRIVER_OBJECT
+0x00c NextDevice : 0x8675ab00 _DEVICE_OBJECT
+0x010 AttachedDevice : 0x8678f030 _DEVICE_OBJECT
+0x014 CurrentIrp : (null)
+0x018 Timer : (null)
+0x01c Flags : 0x5050
+0x020 Characteristics : 0x101
+0x024 Vpb : (null)
+0x028 DeviceExtension : 0x86758bb8 Void
+0x02c DeviceType : 2
+0x030 StackSize : 1 ''
+0x034 Queue : __unnamed
+0x05c AlignmentRequirement : 1
+0x060 DeviceQueue : _KDEVICE_QUEUE
+0x074 Dpc : _KDPC
+0x094 ActiveThreadCount : 0
+0x098 SecurityDescriptor : 0xe100cf70 Void
+0x09c DeviceLock : _KEVENT
+0x0ac SectorSize : 0
+0x0ae Spare1 : 1
+0x0b0 DeviceObjectExtension : 0x86758d38 _DEVOBJ_EXTENSION
+0x0b4 Reserved : (null)
+0x008 DriverObject : 0x867ce610 _DRIVER_OBJECT 【指向为其服务的driver,即atapi】
+0x00c NextDevice : 0x8675ab00 _DEVICE_OBJECT 【指向atapi中的device list中的下一项,在!drvobj atapi的结果中得到了验证】
+0x010 AttachedDevice : 0x8678f030 _DEVICE_OBJECT 【指向该device object所在的device stack中的下一项,或者说更加靠近顶层的一项】
我们沿着device stack一直向下遍历:
kd> dt _DEVICE_OBJECT 0x8678f030
ntdll!_DEVICE_OBJECT
+0x000 Type : 0n3
+0x002 Size : 0x47c
+0x004 ReferenceCount : 0n0
+0x008 DriverObject : 0x867d0970 _DRIVER_OBJECT
+0x00c NextDevice : (null)
+0x010 AttachedDevice : (null)
+0x014 CurrentIrp : (null)
+0x018 Timer : 0x8679a548 _IO_TIMER
+0x01c Flags : 0x2050
+0x020 Characteristics : 0x101
+0x024 Vpb : 0x867bebe0 _VPB
+0x028 DeviceExtension : 0x8678f0e8 Void
+0x02c DeviceType : 2
+0x030 StackSize : 3 ''
+0x034 Queue : __unnamed
+0x05c AlignmentRequirement : 1
+0x060 DeviceQueue : _KDEVICE_QUEUE
+0x074 Dpc : _KDPC
+0x094 ActiveThreadCount : 0
+0x098 SecurityDescriptor : 0xe100cf70 Void
+0x09c DeviceLock : _KEVENT
+0x0ac SectorSize : 0
+0x0ae Spare1 : 0
+0x0b0 DeviceObjectExtension : 0x8678f4b0 _DEVOBJ_EXTENSION
+0x0b4 Reserved : (null)
kd> !devstack 0x8678f030
!DevObj !DrvObj !DevExt ObjectName
> 8678f030 \Driver\Cdrom 8678f0e8 CdRom0
86758b00 \Driver\atapi 86758bb8 IdeDeviceP1T0L0-17
!DevNode 8678f9b8 :
DeviceInst is "IDE\CdRomVBOX_CD-ROM_____________________________1.0_____\42562d3231303037333036372020202020202020"
ServiceName is "cdrom"
可见,device stack其实就是通过_DEVICE_OBJECT中的AttachedDevice指针串联起来的一个单链表,当调用IoAttachDeviceToDeviceStack时,会在该device stack的最顶端添加我们自己的device object。
然后,当一个IRP过来时,不论它是以这个device object中的哪一个device object作为参数,它都会传递到栈的最顶端的device所对应的driver中去处理。
因此,这就是为什么IoAttachDeviceToDeviceStack能够创建file system filter driver的原因。
Device Stack决定了Driver被执行的顺序,或者说driver是没有层次结构的,只有device有层次结构。
Windows Filesystem filter driver的更多相关文章
- busdog is a filter driver for MS Windows (XP and above) to sniff USB traffic.
https://code.google.com/p/busdog/ busdog is a filter driver for MS Windows (XP and above) to sniff U ...
- Windows Self Signed Driver
In particular, Microsoft® instituted a device driver certification process for its Windows® desktop ...
- 显示器驱动程序 NVIDIA Windows Kernel Mode Driver Version 已停止响应 并且己成功恢复 解决方法
原文:http://news.160.com/?p=1890 在玩游戏中 经常 出现显示器驱动程序 NVIDIA Windows Kernel Mode Driver Version 已停止响应 并且 ...
- mini filter driver sql server
https://blogs.msdn.microsoft.com/sql_pfe_blog/2013/04/23/identifying-the-cause-of-sql-server-io-bott ...
- [Windows驱动]驱动包(Driver Packages)
在windows下安装一个驱动,我们你需要把所有需要的软件打包-称为驱动包.驱动包里包括系统提供的给所有设备类使用的一般安装工具,还包括了设备商提供的设备特定的组件.下面我们就来看看驱动包里具体需要哪 ...
- Windows平台内核级文件访问
1.背景 在windows平台下,应用程序通常使用API函数来进行文件访问,创建,打开,读写文件.从kernel32的CreateFile/ReadFile/WriteFile函数,到本地系统 ...
- Windows 8 应用商店无法连接到网络的终极完美解决方案
当你看到以下几个步骤的时候,你可能会不以为然,因为你已经试过了,还是没成功,依然提示"你的电脑没有连接到Internet或者现在无法使用Windows应用商店,要使用Windows应用商店, ...
- WIFI WPA1/2 Crack for Windows
0x00 前言 目前WIFI WPA破解主要 以“aircrack-ng”为代表,运行于Linux系统( 如Kali Linux ),Windows系统比较少见,主要是Windows系统下WIFI网卡 ...
- Windows Kernel Security Training Courses
http://www.codemachine.com/courses.html#kerdbg Windows Kernel Internals for Security Researchers Thi ...
随机推荐
- QImage 如何和 Tensor 相互转换?
torch::Tensor fromQImage(QImage image) { int width = image.width(); int height = image.height(); int ...
- jq鼠标移入移除
ele.on({ mouseover : function(){ } , mouseout : function(){ } })
- JSTL 使用 c:forEach 累加变量值
<body> <% int x = 1; int y = 2; request.setAttribute("x", x); request ...
- 1.ireport基本使用
1. 2.
- 203-基于ARM和双TI DSP TMS320C6678的6UCPCI高清编解码处理平台
基于ARM和双TI DSP TMS320C6678的6UCPCI高清编解码处理平台 1.产品简介 该板卡由我公司自主研发,以TI Cortex-A8.TI 双DSP TMS320C6678为设计核心, ...
- 二、IDS4配置服务
它是根据定义配置服务Config.cs文件来生成客户端和API使用该服务所需的配置数据. 一.IDS4签名服务 1.为项目添加NuGet包. 2.IDS4服务制定的配置Config.cs. using ...
- 8VC Venture Cup 2017 - Elimination Round - A
题目链接:http://codeforces.com/contest/755/problem/A 题意:给定一个正整数N,问你是否存在一个数M使得N*M+1不是素数(M的范围在[1,1000]). 思 ...
- Oracle 数据库恢复命令
前提是oracle服务能正常启动,但是客户端怎么都连接不上. 首先打开命令行,输入:sqlplus / as sysdba; 回车 连上数据库后,屏幕会显示:已连接到空闲例程. 接下来在SQL> ...
- Sass:RGB颜色函数-Red()、Green()、Blue()函数
Red() 函数 red() 函数非常简单,其主要用来获取一个颜色当中的红色值.假设有一个 #f36 的颜色,如果你想得到 #f36 中的 red 值是多少,这个时候使用 red() 函数就能很简单获 ...
- HTML基础 img标签 做一个图库
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title> ...