Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
1answer
406 views

I want to create a minifilter driver to transparently redirect disk i/o, but I'm having trouble getting started

A project I'm working on at the moment requires the implementation of a copy-on-w/m mechanism which will be used to redirect disk i/o in a similar manner to Deep Freeze or Sandboxie, on Windows XP. If ...
1
vote
1answer
88 views

Is it possible to drop IRPs in File System Filter Drivers?

I have a couple of signatures and I want to build a File System Filter Driver which can check all possible operations with the signatures. If a match is found than the Filter Driver should drop the ...
1
vote
4answers
374 views

minifilter vs. API Hooking for file system operations monitoring \ filtering

I need to develop an application that monitors, and potentially filters (rejects the calls), file operations. It appears that developing a minifilter is the "standard" solution. another potential ...
1
vote
2answers
93 views

debugging minifilters

I have been writing and debugging a minifilter on Windows 7 using the IFS Kit for some time now. it finally works, but as I require to add further functionality, I will spend some more days playing ...
1
vote
0answers
263 views

MiniFilter driver. Filter attaching problems

I'm developing a miniFilter driver and took the Microsoft's SwapBuffers miniFilter as example. An InstaceSetup routin by default is attaching to all volumes. But I don't want to attach to all of ...
1
vote
1answer
150 views

communication between c# application and minifilter driver

is there any example of an c# application that's communicates with a minifilter via communication port? thx
1
vote
1answer
322 views

windows I/O manager - IRP's classification in read-like and write-like

I am writing a windows filesystem minifilter driver that must fail I/O Request Packets (IRP's) in a preoperation callback based on their type (read/write). How can I find out from the callback ...
1
vote
2answers
731 views

Windows Filesystem Minifilter Drivers: can I monitor and prevent FS operations using them?

I need to: 1. Monitor operations on certain drives/paths 2. Prevent read and/or write operations on certain drives/paths For example: C://Users D: Can this be done using Windows Filesystem ...
0
votes
2answers
83 views

Can file system driver filters filter operations based on user id?

follow up to: Windows Filesystem Minifilter Drivers: can I monitor and prevent FS operations using them? I'm looking for a method to filter access to certain file system resources. This includes ...
0
votes
0answers
105 views

Safe way to cancel filesystem IO operations from a minifilter driver

I built a minifilter driver which tries to log and then cancel all filesystem operations from a particular program/driver. I am using FltCancelFileOpen() function but it gives be BSOD whenever there ...
0
votes
2answers
306 views

USB storage device SerialNumber from minifilter driver (from USB device descriptor)

I want to extract a USB storage device serial number from inside a minifilter filesystem driver, inside the InstanceSetup callback using the technique described here the only difference is that I do ...