X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fvnet%2Finterface_output.h;h=b512d9a04a87b81947af7bf7577e1317530afb51;hb=b10561bbecb2870360a731b4696bff920150720d;hp=6b766d36c4ffe15c2cf2d92aba07b14789671049;hpb=5b3f523918932793254b6313f78659fe0ed6320e;p=vpp.git diff --git a/src/vnet/interface_output.h b/src/vnet/interface_output.h index 6b766d36c4f..b512d9a04a8 100644 --- a/src/vnet/interface_output.h +++ b/src/vnet/interface_output.h @@ -41,10 +41,12 @@ #define __INTERFACE_INLINES_H__ #include +#include static_always_inline void vnet_calc_ip4_checksums (vlib_main_t *vm, vlib_buffer_t *b, ip4_header_t *ip4, - tcp_header_t *th, udp_header_t *uh, u32 oflags) + tcp_header_t *th, udp_header_t *uh, + vnet_buffer_oflags_t oflags) { if (oflags & VNET_BUFFER_OFFLOAD_F_IP_CKSUM) ip4->checksum = ip4_header_checksum (ip4); @@ -62,7 +64,8 @@ vnet_calc_ip4_checksums (vlib_main_t *vm, vlib_buffer_t *b, ip4_header_t *ip4, static_always_inline void vnet_calc_ip6_checksums (vlib_main_t *vm, vlib_buffer_t *b, ip6_header_t *ip6, - tcp_header_t *th, udp_header_t *uh, u32 oflags) + tcp_header_t *th, udp_header_t *uh, + vnet_buffer_oflags_t oflags) { int bogus; if (oflags & VNET_BUFFER_OFFLOAD_F_TCP_CKSUM) @@ -85,7 +88,10 @@ vnet_calc_checksums_inline (vlib_main_t * vm, vlib_buffer_t * b, ip6_header_t *ip6; tcp_header_t *th; udp_header_t *uh; - u32 oflags = vnet_buffer2 (b)->oflags; + vnet_buffer_oflags_t oflags; + + if (!(b->flags & VNET_BUFFER_F_OFFLOAD)) + return; ASSERT (!(is_ip4 && is_ip6)); @@ -93,6 +99,7 @@ vnet_calc_checksums_inline (vlib_main_t * vm, vlib_buffer_t * b, ip6 = (ip6_header_t *) (b->data + vnet_buffer (b)->l3_hdr_offset); th = (tcp_header_t *) (b->data + vnet_buffer (b)->l4_hdr_offset); uh = (udp_header_t *) (b->data + vnet_buffer (b)->l4_hdr_offset); + oflags = vnet_buffer (b)->oflags; if (is_ip4) { @@ -108,6 +115,36 @@ vnet_calc_checksums_inline (vlib_main_t * vm, vlib_buffer_t * b, VNET_BUFFER_OFFLOAD_F_TCP_CKSUM)); } +static_always_inline void +vnet_calc_outer_checksums_inline (vlib_main_t *vm, vlib_buffer_t *b) +{ + + if (!(b->flags & VNET_BUFFER_F_OFFLOAD)) + return; + + vnet_buffer_oflags_t oflags = vnet_buffer (b)->oflags; + if (oflags & VNET_BUFFER_OFFLOAD_F_OUTER_IP_CKSUM) + { + ip4_header_t *ip4; + ip4 = (ip4_header_t *) (b->data + vnet_buffer2 (b)->outer_l3_hdr_offset); + ip4->checksum = ip4_header_checksum (ip4); + vnet_buffer_offload_flags_clear (b, + VNET_BUFFER_OFFLOAD_F_OUTER_IP_CKSUM); + } + else if (oflags & VNET_BUFFER_OFFLOAD_F_OUTER_UDP_CKSUM) + { + int bogus; + ip6_header_t *ip6; + udp_header_t *uh; + + ip6 = (ip6_header_t *) (b->data + vnet_buffer2 (b)->outer_l3_hdr_offset); + uh = (udp_header_t *) (b->data + vnet_buffer2 (b)->outer_l4_hdr_offset); + uh->checksum = 0; + uh->checksum = ip6_tcp_udp_icmp_compute_checksum (vm, b, ip6, &bogus); + vnet_buffer_offload_flags_clear (b, + VNET_BUFFER_OFFLOAD_F_OUTER_UDP_CKSUM); + } +} #endif /*