Linux内核-协议栈-主要函数调用栈

简介: 版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/feilengcui008/article/details/50989571 本文主要记录Linux协议栈相关的主要系统调用的一些主要的函数调用栈,备忘。
版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/feilengcui008/article/details/50989571

本文主要记录Linux协议栈相关的主要系统调用的一些主要的函数调用栈,备忘。目前添加socket/connect

1.sys_socket

  • bsd socket layer

    => sys_create net/socket.c

    => socket_create net/socket.c

    => __socket_create net/socket.c

    => sock_alloc net/socket.c

  • inet sock layer

    => net_families[family]->create net/socket.c

    => inet_create net/ipv4/af_inet.c

    => list_for_each_entry_rcu(answer, &inetsw[sock->type], list)

    => sock->ops = answer->ops //绑定每个协议族的proto_ops到socket结构上,proto_ops通常是与下层传输层的接口比如inet_connect,inet_*

    => sk_alloc(net, PF_INET, GFP_KERNEL, answer->prot) net/core/sock.c

    => sk_prot_alloc net/core/sock.c

    => kmem_cache_alloc(prot->slab) net/core/sock.c

    => sk->sk_prot = prot; sk->family = family net/core/sock.c

    => sock_init_data net/core/sock.c

    => skb_queue_head_init(&sk->sk_receive_queue) net/core/sock.c
    skb_queue_head_init(&sk->sk_write_queue)
    skb_queue_head_init(&sk->sk_error_queue)

    => sk->sk_state = TCP_CLOSE
    sk_set_socket(sk, sock)

    => sk->sk_prot->init(sk)

  • transport layer

    => tcp_v4_init_sock net/ipv4/tcp_ipv4.c

    => tcp_init_sock net/ipv4/tcp.c

    => icsk->icsk_af_ops = &ipv4_specific net/ipv4/tcp_ipv4.c //这里挂接传输层的读写处理,每个sock结构有一个inet_connection_sock的队列负责接收对端的socket


2.connect

  • bsd socket layer

    => sys_connect net/socket.c

    => sock->ops->connect(sock->proto_ops->connect) net/socket.c

  • inet sock layer

    => inet_stream_ops->connect net/ipv4/af_inet.c

    => inet_stream_connect net/ipv4/af_inet.c

    => __inet_stream_connect net/ipv4/af_inet.c

    => sock->sk->sk_prot->connect net/ipv4/af_inet.c

  • transport layer

    => tcp_prot->connect(tcp_v4_connect) net/ipv4/tcp_ipv4.c

    => ip_route_connect net/ipv4/tcp_ipv4.c

    => ip_route_connect_init include/net/route.h

    => flowi4_init_output include/net/flow.h

    => tcp_set_state(sk, TCP_SYN_SENT) net/ipv4/tcp_ipv4.c

    => tcp_connect net/ipv4/tcp_output.c

    => tcp_connect_init net/ipv4/tcp_output.c

    => sk_stream_alloc_skb net/ipv4/tcp.c

    => __alloc_skb net/core/skbuff.c

    => kmem_cache_alloc_node

    => tcp_connect_queue_skb net/ipv4/tcp_output.c

    => __tcp_add_write_queue_tail include/net/tcp.h

    => tcp_transmit_skb net/ipv4/tcp_output.c

    => icsk->icsk_af_ops->queue_xmit

  • ip layer

    => ip_queue_xmit net/ipv4/ip_output.c

    => ip_route_output_ports net/ipv4/ip_output.c 路由

    => ip_local_out include/net/ip.h

    => ip_local_out_sk net/ipv4/ip_output.c

    => __ip_local_out net/ipv4/ip_output.c netfilter检查

    => nf_hook (netfilter hooks) include/linux/netfilter.h

    => nf_hook_thresh include/linux/netfilter.h

    => nf_hook_slow include/linux/netfilter.h

    => nf_iterate net/netfilter/core.c

    => dst_output_sk include/net/dst.h

    => dst_entry->output include/net/dst.h

    => ip_output? net/ipv4/ip_output.c

    => ip_finish_output net/ipv4/ip_output.c

    => ip_fragment net/ipv4/ip_output.c

    => ip_finish_output2 net/ipv4/ip_output.c

  • hardware related layer

    => dst_neigh_output include/net/dst.h

    => neigh_hh_output include/net/neighbour.h

    => dev_queue_xmit net/core/dev.c

    => __dev_queue_xmit net/core/dev.c

    => netdev_pick_tx net/core/flow_dissector.c

    => __dev_xmit_skb net/core/dev.c

    => q->enqueue

    => __qdisc_run(q) net/sched/sch_generic.c

    => qdisc_restart net/sched/sch_generic.c

    => dequeue_skb net/sched/sch_generic.c

    => skb_get_tx_queue net/sched/sch_generic.c

    => netdev_get_tx_queue net/sched/sch_generic.c

    => sch_direct_xmit net/sched/sch_generic.c

    => validate_xmit_skb_list net/sched/sch_generic.c

    => dev_hard_start_xmit net/core/dev.c

    => xmit_one net/core/dev.c

    => netdev_start_xmit include/linux/netdevice.h

    => net_device_ops->ndo_start_xmit include/linux/netdevice.h

    => driver layer?

ref:
1. linux-3.19.3 src
2. Linux IP Networking A Guide to the Implementation and Modification of the Linux Protocol Stack

相关文章
|
7天前
|
算法 Linux 调度
深入理解Linux内核调度器:从基础到优化####
本文旨在通过剖析Linux操作系统的心脏——内核调度器,为读者揭开其高效管理CPU资源的神秘面纱。不同于传统的摘要概述,本文将直接以一段精简代码片段作为引子,展示一个简化版的任务调度逻辑,随后逐步深入,详细探讨Linux内核调度器的工作原理、关键数据结构、调度算法演变以及性能调优策略,旨在为开发者与系统管理员提供一份实用的技术指南。 ####
34 4
|
2天前
|
算法 Linux 开发者
Linux内核中的锁机制:保障并发控制的艺术####
本文深入探讨了Linux操作系统内核中实现的多种锁机制,包括自旋锁、互斥锁、读写锁等,旨在揭示这些同步原语如何高效地解决资源竞争问题,保证系统的稳定性和性能。通过分析不同锁机制的工作原理及应用场景,本文为开发者提供了在高并发环境下进行有效并发控制的实用指南。 ####
|
9天前
|
缓存 负载均衡 Linux
深入理解Linux内核调度器
本文探讨了Linux操作系统核心组件之一——内核调度器的工作原理和设计哲学。不同于常规的技术文章,本摘要旨在提供一种全新的视角来审视Linux内核的调度机制,通过分析其对系统性能的影响以及在多核处理器环境下的表现,揭示调度器如何平衡公平性和效率。文章进一步讨论了完全公平调度器(CFS)的设计细节,包括它如何处理不同优先级的任务、如何进行负载均衡以及它是如何适应现代多核架构的挑战。此外,本文还简要概述了Linux调度器的未来发展方向,包括对实时任务支持的改进和对异构计算环境的适应性。
30 6
|
10天前
|
缓存 Linux 开发者
Linux内核中的并发控制机制:深入理解与应用####
【10月更文挑战第21天】 本文旨在为读者提供一个全面的指南,探讨Linux操作系统中用于实现多线程和进程间同步的关键技术——并发控制机制。通过剖析互斥锁、自旋锁、读写锁等核心概念及其在实际场景中的应用,本文将帮助开发者更好地理解和运用这些工具来构建高效且稳定的应用程序。 ####
29 5
|
10天前
|
缓存 运维 网络协议
深入Linux内核架构:操作系统的核心奥秘
深入Linux内核架构:操作系统的核心奥秘
27 2
|
3月前
|
Linux
Linux0.11 文件打开open函数(五)
Linux0.11 文件打开open函数(五)
48 0
|
6月前
|
Linux 开发者
Linux文件编程(open read write close函数)
通过这些函数,开发者可以在Linux环境下进行文件的读取、写入和管理。 买CN2云服务器,免备案服务器,高防服务器,就选蓝易云。百度搜索:蓝易云
171 4
|
6月前
|
存储 Linux
Linux文件编程(open read write close函数)
Linux文件编程(open read write close函数)
226 0
|
Linux
Linux系统调用二、open()函数与close()函数介绍
Linux系统调用二、open()函数与close()函数介绍
370 0
Linux系统调用二、open()函数与close()函数介绍
|
Linux
Linux系统中利用open函数多次打开同一个文件操作方法
大家好。 今天的话主要和大家聊一聊,在Linux系统中如果一个文件被打开多次会出现什么情况。
670 0
Linux系统中利用open函数多次打开同一个文件操作方法
下一篇
无影云桌面