如何读取内核空间中的 UDP 段?

发布于 2024-08-23 05:30:32 字数 153 浏览 4 评论 0原文

我在内核空间中创建一个模块,使用套接字 RAW 发送 UPD 段,但我的问题是从内核空间读取 UDP 段。

我可以从用户空间读取UDP段,但是当我证明从内核空间使用“sock_recvmsg”时,我得到结果-512

请帮助我!

I create a module in kernel space that send a UPD segment using socket RAW, but my problem is read the UDP segment from kernel space.

I can read the UDP segment from user space, but when I prove to use "sock_recvmsg" from kernel space, I obtain as result -512

Please, help me!

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

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

发布评论

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

评论(1

夕色琉璃 2024-08-30 05:30:32

我不知道为什么你觉得需要使用原始套接字来发送/接收 UDP - 只需使用 UDP 套接字即可。

您提供给 sock_recvmsg 的地址结构可能不正确。

一般来说,从内核内部使用网络是一个坏主意,应该避免(尤其是,它将您的代码与特定的内核版本联系起来)。如果您告诉我们您想要做什么(最好以另一个问题的形式),也许有人可以提出更好的方法。

I don't know why you feel the need to use a raw socket to send/recieve UDP - just use a UDP socket instead.

It may be that the structure you're supplying to sock_recvmsg for the address isn't right.

In general using networking from inside the kernel is a bad idea and should be avoided (not least, it ties your code to a specific kernel version). If you tell us what you're trying to do (ideally in the form of another question) maybe someone can suggest a better way.

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