Windows System Software -- Consulting, Training, Development -- Unique Expertise, Guaranteed Results
The free OSR Learning Library has more than 50 articles on a wide variety of topics about writing and debugging device drivers and Minifilters. From introductory level to advanced. All the articles have been recently reviewed and updated, and are written using the clear and definitive style you've come to expect from OSR over the years.
Check out The OSR Learning Library at: https://www.osr.com/osr-learning-library/
Hi all. I have a file system legacy filter driver. I try to send messages to the driver from user mode it works fine. When I try to send new messages(not existing in the driver) from my user-mode application I face BSOD issues. Thanks in advance. Can you please prove a solution?
I have shared the sample code below.
NTSTATUS cwDevIoControl(PDEVICE_OBJECT DeviceObject, PIRP Irp)
{
LONG lControlCode;
NTSTATUS status;
PIO_STACK_LOCATION ioStack;
status = STATUS_SUCCESS;
ioStack = IoGetCurrentIrpStackLocation(Irp);
inBuf = Irp->AssociatedIrp.SystemBuffer;
outBuf = Irp->AssociatedIrp.SystemBuffer;
lControlCode = ioStack->Parameters.DeviceIoControl.IoControlCode;
Irp->IoStatus.Information = 0;// Set the status field to zero for completion
switch(lControlCode)
{
case 1:
break;
case 2:
break;
default:
IoSkipCurrentIrpStackLocation( Irp );// this is where bsod happens
return IoCallDriver( , Irp );
}
Irp->IoStatus.Status = status;
IoCompleteRequest(Irp, IO_NO_INCREMENT);
return status;
}
Upcoming OSR Seminars | ||
---|---|---|
OSR has suspended in-person seminars due to the Covid-19 outbreak. But, don't miss your training! Attend via the internet instead! | ||
Writing WDF Drivers | 7 Dec 2020 | LIVE ONLINE |
Internals & Software Drivers | 25 Jan 2021 | LIVE ONLINE |
Developing Minifilters | 8 March 2021 | LIVE ONLINE |
Comments
You haven't provided enough details for anyone to help you...You need to at least post the !analyze -v. Also your output is incomplete (IoCallDriver argument is missing).
And, because I need to say it, you should be writing a Minifilter.
-scott
OSR