监视已在使用的 COM 端口

发布于 2024-09-01 11:36:42 字数 1549 浏览 5 评论 0原文

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

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

发布评论

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

评论(4

〆凄凉。 2024-09-08 11:36:42

是的,这在技术上是可行的。您将需要一个过滤器驱动程序,这是一种在本机串行端口驱动程序之前注入自身的组件的设备驱动程序类型。在将驱动程序 IRP 发送给常规驱动程序之前,它会对驱动程序 IRP 进行破解。

这是 SysInternals 的 PortMon 实用程序使用的技术。但是,您无法用 C# 代码编写这样的驱动程序,CLR 无法加载到 Ring 0 中。至少在超级机密的 Midori 项目问世之前不能。

COM 过滤器驱动程序非常常见,例如,请查看这个。不过,您必须进行一些谷歌搜索才能找到具有 .NET 包装器的产品。

Yes, this is technically possible. You'll need a filter driver, a device driver type of a component that injects itself ahead of the native serial port driver. It gets a crack at the driver IRPs before sending them on to the regular driver.

This is the technique used by SysInternals' PortMon utility. However, you cannot write such a driver in C# code, the CLR cannot be loaded into ring 0. At least not until the super-secret Midori project sees the light of day.

COM filter drivers are pretty common, check out this one for example. You have to do some googling to find one that has a .NET wrapper though.

残疾 2024-09-08 11:36:42

PortMon 是经典的 COM 端口监视器。它必须在程序打开 COM 端口之前运行,但可以启用/禁用监视部分。

PortMon is the classic COM port monitor. It has to be running before the program opens the COM port, but the monitoring part can be enabled/disabled.

何以心动 2024-09-08 11:36:42

您可以使用 Portmon for Windows 来监视活动。我执行此操作的另一种方法是使用一些硬件和笔记本电脑。我不确定如何使用 C# 应用程序自行监控它。一旦您连接到它并尝试再次连接,它将已在使用中。

另请检查一下,它有些相关,并附有有关 PortMon 如何工作的说明:
串行端口重定向或拆分 - Stack Overflow

如果您拥有或可以获得多个 COM端口,您可以使用分离器并从另一个端口进行监控。

You can use Portmon for Windows to monitor the activity. The other way I do this is with some hardware and a laptop. I'm not sure how you can monitor it yourself with a C# app. Once you are connected to it and attempt to connect again it will already be in use.

Also check this out, it's somewhat related, with a note on how PortMon works:
Serial Port Redirection or Splitting - Stack Overflow

If you have or can get more than one COM port, you could use a splitter and do the monitoring from the other port.

巡山小妖精 2024-09-08 11:36:42

com0com 可能会满足您的需求。这对我有用。

com0com may satisfy your needs. It worked for me.

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