如何使用 vnode 删除文件?
我正在为 Mac 操作系统编写一个内核扩展,我需要删除由 vnode_open(),但我不知道如何删除文件并列出目录中的所有文件。
谢谢!
I am writing a kernel extention for Mac os, and i need to delete a tmp file created by
vnode_open(),but i can not find out how to delete a file and list all files in a dir.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最好创建用户空间守护进程并使用 mach RPC 与其通信。
在 kext 中删除文件的方法(据我所知)取决于内核的版本,因为它需要查找 vnode 结构中 v_op (vnode 操作向量。它在内核扩展中不可见)的偏移量。 vnode 结构可能因内核而异。即使有人找到 vnop_remove_desc 和 vnop_rmdir_desc 我认为使用它也可能是危险的,因为使用这些回调的逻辑可能会发生变化。
It is better to create user-space daemon and to communicate with it using mach RPC.
The method of deletion of file in kext (that i'm aware of) depends on the version of kernel because it requires lookup of the offset of v_op (vnode operations vector. It is not visible from kernel extensions) within vnode structure. The vnode structure may change from kernel to kernel. And even if one finds vnop_remove_desc and vnop_rmdir_desc i think using it may be dangerous due to possible changes of the logic of using these callbacks.