如何读取内核空间中的 UDP 段?
我在内核空间中创建一个模块,使用套接字 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不知道为什么你觉得需要使用原始套接字来发送/接收 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.