vote up 0 vote down star

hello, im writing a driver and I have a problem

everytime I try to open a handle to my driver using CreateFile, I get bsod (Access Violation)

It's important to mention that my driver loads successfuly and I dont get any errors

does someone knows how to handle it ?

Thanks in advance!

flag
1  
You'll really need to post some code... – Michael Burr Jul 9 at 7:30

3 Answers

vote up 1 vote down

!analyze -v is your friend.

link|flag
vote up 1 vote down

Turn on creating Kernel Dump in Windows settings and then analyze dump in WinDbg.

link|flag
vote up 0 vote down

Are you using ZwCreateFile or Createfile? You can't use CreateFile in a driver because that is a usermode function and drivers run in kernel mode. Instead call ZwCreateFile which is the kernel mode version of CreateFile.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.