I'm using ReadDirectoryChangesW (Windows API) asynchronously in combination with GetQueuedCompletionStatus. How can I detect a possible buffer overflow to understand that at least one file system change event has been lost?
ReadDirectoryChangesW: how to detect buffer overflow when using asynchronously?
1.1k Views Asked by mstrap At
3
There are 3 best solutions below
0

Judging from here, it seems like there is no such error code returned asynchronously.
Suggestion: Monitor for changes synchronously, but in a dedicated thread, and watch out for ERROR_NOTIFY_ENUM_DIR
.
0

You may not be able to accomplish your detections that way, but here is a great tutorial that may help.
You might also check out the answer to this other question.
When using
ReadDirectoryChangesW
asynchronously, you will get the first group of events, then you have to call it again for more events. Having more events than fit in your buffer is not an error. Having more events than fit in the OS-level buffer is the error condition, and you find out like so:ReadDirectoryChangesW
completes successfully. Your buffer is filled, your event handle is set or the IOCP is triggered.ReadDirectoryChangesW
again to begin an asynchronous overlapped operation checking for any events that happened since step 2. This call fails synchronously, withGetLastError() == ERROR_NOTIFY_ENUM_DIR
, or succeeds withdwBytesTransferred == 0
, since the documentation says this also means to re-enumerate the directory