gpt4 book ai didi

networking - 了解内核中的 'struct proto'和 'struct proto_ops'

转载 作者:行者123 更新时间:2023-12-03 16:35:26 26 4
gpt4 key购买 nike

正在研究tcp/ip的实现,特别是sockets层,有几个结构不是很明白。

我知道“struct proto_ops”用于定义操作,例如绑定(bind)/连接/接受,每个套接字都有一个指定的 proto_ops。

另一方面,“struct proto”定义了新的协议(protocol),该结构还定义了accept/bind/setsockopt/getsockopt等函数指针。方法。

我在 $linux/net/中阅读了很多代码,但我没有看到它在哪里使用通过“struct proto”定义的操作,所以我不确定代码中如何使用这些方法?

有人可以为我澄清一下吗?谢谢。

最佳答案

我觉得这个问题是新手尝试创建新协议(protocol)时最头疼的问题

解释:两种结构都有名称相似的成员元素,尽管它们代表不同的功能

  • struct prot_ops:用于socket层和传输层之间的通信
  • struct prot:用于与系统调用通信

示例:当您在用户空间调用系统调用时,ex connect()、prot_ops_connect() 将首先被调用。

  • 在函数prot_ops_connect()中,我们需要调用sk->sk_prot->connect()
  • sk->sk_prot->connect() 会自动调用 proto_connect()

希望对你有帮助

关于networking - 了解内核中的 'struct proto'和 'struct proto_ops',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25656846/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com