监视 IOCTL 的最佳方法是什么?

发布于 2024-08-30 00:13:50 字数 163 浏览 6 评论 0原文

我有一个 U9 Telit 调制解调器,它首先显示为 USB 总线上的磁盘驱动器。然后,本机软件在自动运行和安装后,发送几个 IOCTL 来告诉设备重新显示为其他内容。我可以在 procmon 中看到它们。

我想更好地监视这些,准确地知道它们发送了什么以及如何发送,以便以正确的方式做同样的事情。

I have a U9 Telit modem which, at first, appears as a disk drive on USB bus. Then, the native software after autorun and install, sends a couple of IOCTLs to tell the device to reappear as other things. I can see them in procmon.

I want to better spy on these, to know exactly what they send and how, in order to do the same in proper way.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

蓦然回首 2024-09-06 00:13:50

尝试一些类似 Systemtap 的东西。附加一个从内核转储所有 ioctl 和参数的探测器,通过它们进行 grep。

Try something like Systemtap. Attach a probe that dumps all ioctls and arguments from the kernel, grep through them.

庆幸我还是我 2024-09-06 00:13:50

你可以在linux下使用strace之类的东西。此处讨论了 Windows 等效项Systrace for Windows
这可能会显示发送的 ioctl 命令。

一些公司提供其设备的 Linux 内核,可以从其官方网页直接下载。在那里您可能会找到有关其工作原理的更多信息。对于某些设备,构建和部署您自己的内核很容易。这很有帮助,因为您可以添加自定义调试输出。

You could use something like strace under linux. The windows equivalent is discussed here Systrace for Windows.
This might show you the ioctl commands sent.

Some companies offer the linux kernels of their devices as direct download from their official webpage. There you might find more information on how it works. For some devices, it's easy to build and deploy your own kernel. This helps as you can add custom debug output.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文