Correspondence between ProcMon and CreateFile disposition options

流过昼夜 提交于 2019-12-08 16:21:21

问题


Process Monitor shows disposition option for CreateFile operation as "Open", "OpenIf", "Overwrite", "OverwriteIf" (may be something else). How does the options which contain "If" differ from those that do not? And to which CreateFile WinAPI function 'dwCreationDisposition' flags do they correspond?


回答1:


| CreateFile            | NtCreateFile          | Process Monitor |
| dwCreationDisposition | CreateDisposition     | Disposition     |
|-----------------------|-----------------------|-----------------|
| n/a                   | FILE_SUPERSEDE (0)    | Supersede (?)   |
| OPEN_EXISTING (3)     | FILE_OPEN (1)         | Open            |
| TRUNCATE_EXISTING (5) | FILE_OPEN (1)         | Open            |
| CREATE_NEW (1)        | FILE_CREATE (2)       | Create          |
| OPEN_ALWAYS (4)       | FILE_OPEN_IF (3)      | OpenIf          |
| n/a                   | FILE_OVERWRITE (4)    | Overwrite (?)   |
| CREATE_ALWAYS (2)     | FILE_OVERWRITE_IF (5) | OverwriteIf     |



回答2:


CreateFile() is the winapi function. Process Monitor however patches the native operating system, it only resembles the winapi in passing. It is pretty similar to VMS, the operating system that Dave Cutler designed when he still worked at DEC. Process Monitor hooks NtCreateFile(), follow the link to see the CreateDisposition argument values documented. Copied:

  • FILE_SUPERSEDE. If the file already exists, replace it with the given file. If it does not, create the given file.
  • FILE_CREATE. If the file already exists, fail the request and do not create or open the given file. If it does not, create the given file.
  • FILE_OPEN. If the file already exists, open it instead of creating a new file. If it does not, fail the request and do not create a new file.
  • FILE_OPEN_IF. If the file already exists, open it. If it does not, create the given file.
  • FILE_OVERWRITE. If the file already exists, open it and overwrite it. If it does not, fail the request.
  • FILE_OVERWRITE_IF. If the file already exists, open it and overwrite it. If it does not, create the given file.


来源:https://stackoverflow.com/questions/22552697/correspondence-between-procmon-and-createfile-disposition-options

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!