Has anyone managed to figure out how asynchronous calls to NtQueryDirectoryFile work?

By an asynchronous call, I mean calling NtQueryDirectoryFile on directories not opened with FILE_SYNCHRONOUS_IO_ALERT or with FILE_SYNCHRONOUS_IO_NONALERT.

For me, it seems to return STATUS_PENDING just like a normal NtReadFile request does on a normal file, but when I tried using NtWaitForSingleObject on the directory, it didn't end properly, and I still don't get all the data... why does this happen?

link|improve this question

Why do you feel you need to use async I/O for a query directory? – Larry Osterman Mar 12 '11 at 16:46
@Larry: Because synchronous I/O on \Windows\WinSxS and its subfolders is painfully slow on a hard disk, and I could use some parallelism when enumerating the disk. – Mehrdad Mar 12 '11 at 18:43
I'd be astonished if you were blocked on I/O reading the WinSxS directory (there's not a lot of I/O needed to read the directory content). If you want parallelism, why not do the I/O synchronously on a separate thread? – Larry Osterman Mar 13 '11 at 2:31
@Larry: Really? Try rebooting, then listing the contents of that directory on Windows 7. You'd be surprised... it literally takes ~5 seconds for it to read the entire directory before it even starts enumerating (assuming a defragmented and an otherwise idle drive, that is)... have you tried it? I would use another thread, but it's not something I want to do if I can avoid it. – Mehrdad Mar 13 '11 at 2:38
You shouldn't be seeing a 5 second delay in reading the WinSxS directory (neither I or the NTFS developer see this - on my machine (Win7 x64) it took .5s to start enumerating the 13K directories in WinSxS). Is it possible that something is interfering with your reads (possibly an antivirus application)? – Larry Osterman Mar 17 '11 at 15:03
show 3 more comments
feedback

1 Answer

As far as I know, none of the Windows filesystems support asynchronous query directory calls. The Win32 APIs never call NtQueryDirectoryFile asnchronously, so support for it is hit-or-miss.

NTFS theoretically supports asynchronous NtQueryDirectoryFile but (as I mentioned) it is not extensively tested so it may not work.

You response indicated that you called WaitForSingleObject on the directory - that's not how the async pattern works in NT - you need to call WaitForSingleObject on the event handle provided as a parameter to NtQueryDirectoryFile.

This update is a result of asking the NTFS developer for more information, he tested this scenario on his machine and it worked for him (on Windows 7).

link|improve this answer
Hm... then why do they return STATUS_PENDING along with partial data? – Mehrdad Mar 12 '11 at 18:44
I don't know. If I were to speculate, I'd guess that the status_pending is generated by the I/O subsystem (above the filesystems) and the partial results are whatever could be satisfied by the cache at the time of the read. But I'm not a filesystem guy so I don't know. – Larry Osterman Mar 13 '11 at 2:32
May I ask why you believe the async calls aren't supported? Is it just a guess, or did you happen to read it somewhere? – Mehrdad Mar 13 '11 at 2:40
It's a guess - thats why the "as far as I know" comment. I do know that Win32 always issues the query directory calls synchronously. – Larry Osterman Mar 13 '11 at 15:42
1  
Please note that I've massively rewritten my answer with information from the deveoper who owns the NTFS filesystem. – Larry Osterman Mar 17 '11 at 15:01
show 16 more comments
feedback

Your Answer

 
or
required, but never shown

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