• Linux checksum flag in kernel


    net_device->feature

    | NETIF_F_NO_CSUM: No need to use L4 checksum, it used for loopback device.

    | NETIF_F_IP_CSUM:  the device can compute L4 checksum in hardware, but only for TCP and UDP over IPv4.

    | NETIF_F_HW_CSUM: the device can compute the L4 checksum in hardware for any protocol.

    For receive path:

    skb->csum  may hold the L4 checksum(when skb->ip_summed == CHECKSUM_COMPLETE, this filed hold the checksum provided by hardware).

    skb->ip_summed: indicate the checksum status.

    CHECKSUM_NONE:  the checksum in csum is not valid, this can be due to:

      1. device doesn't provide hardware checksumming.

          2. hardware found the packet is corrupted, in normal case, it should drop this packet and not discard this packet, but the driver may want the kernel to re-check it again,so it set this flag.

       IMPORTANT: if the packet is going to be forwarded, the router should not discard it dure to wrong L4 checksum (a route is not supposed to check L4 checksum). but the receiver need to check it.

         3. the checksum need be recomputed nd reverified.

    CHECKSUM_HW: the NIC hs computed the checksum on the L4 header and payload. and has copied it into the skb->csum field. The software needs to add checksum on the pseduo-heder to generate the result checksum.

    CHECHSUM_UNNECESSARY: the NIC has computed and verified the checksum. software doesn't need to verify the checksum again.

    For TX path: skb->csum: tell hardware to put the checksum at this offset of the packet.

    skb->ip_summed, CHECKSUM_NONE: the software has processed the checksum, hardware doesn't need to do anything.

    CHECKSUM_HW: software computed the checksum of the pseudo-header. hardware need to adding this checksum to L4 header and payload.

    refer:tcp_v4_checksum_init for rx, tcp_v4_send_check for tx in kernel code.

  • 相关阅读:
    Docker+geoserver发布shp地图服务
    Docker中运行命令时提示:Cannot connect to the Docker daemony...以及设置docker开机启动
    Docker在服务器之间怎样导入导出镜像(服务器之间容器复制)
    Docker+Tomcat+geoserver+shp发布地图服务
    Windows中将文件压缩成linux支持的tar.gz格式的压缩包
    Docker怎样提交镜像(把容器打成镜像)
    Docker中宿主机与容器之间互传文件(docker cp的方式)
    移动零
    旋转数组
    有序数组的平方
  • 原文地址:https://www.cnblogs.com/yizhinantian/p/3929301.html
Copyright © 2020-2023  润新知