blob: bfd2066c2a8fc656f40e7fb8517dc3d3a3cfff38 [file] [log] [blame]
Neale Ranns25edf142019-03-22 08:12:48 +00001/*
2 * Copyright (c) 2015 Cisco and/or its affiliates.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15/*
16 * interface_output.c: interface output node
17 *
18 * Copyright (c) 2008 Eliot Dresselhaus
19 *
20 * Permission is hereby granted, free of charge, to any person obtaining
21 * a copy of this software and associated documentation files (the
22 * "Software"), to deal in the Software without restriction, including
23 * without limitation the rights to use, copy, modify, merge, publish,
24 * distribute, sublicense, and/or sell copies of the Software, and to
25 * permit persons to whom the Software is furnished to do so, subject to
26 * the following conditions:
27 *
28 * The above copyright notice and this permission notice shall be
29 * included in all copies or substantial portions of the Software.
30 *
31 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
32 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
33 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
34 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
35 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
36 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
37 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
38 */
39
40#ifndef __INTERFACE_INLINES_H__
41#define __INTERFACE_INLINES_H__
42
43#include <vnet/vnet.h>
Mohsin Kazmi0b042092020-04-17 16:50:56 +000044
45static_always_inline void
Mohsin Kazmi68095382021-02-10 11:26:24 +010046vnet_calc_ip4_checksums (vlib_main_t *vm, vlib_buffer_t *b, ip4_header_t *ip4,
47 tcp_header_t *th, udp_header_t *uh, u32 oflags)
Mohsin Kazmi0b042092020-04-17 16:50:56 +000048{
Mohsin Kazmi68095382021-02-10 11:26:24 +010049 if (oflags & VNET_BUFFER_OFFLOAD_F_IP_CKSUM)
Mohsin Kazmi0b042092020-04-17 16:50:56 +000050 ip4->checksum = ip4_header_checksum (ip4);
Mohsin Kazmi68095382021-02-10 11:26:24 +010051 if (oflags & VNET_BUFFER_OFFLOAD_F_TCP_CKSUM)
Mohsin Kazmi0b042092020-04-17 16:50:56 +000052 {
53 th->checksum = 0;
54 th->checksum = ip4_tcp_udp_compute_checksum (vm, b, ip4);
55 }
Mohsin Kazmi68095382021-02-10 11:26:24 +010056 if (oflags & VNET_BUFFER_OFFLOAD_F_UDP_CKSUM)
Mohsin Kazmi0b042092020-04-17 16:50:56 +000057 {
58 uh->checksum = 0;
59 uh->checksum = ip4_tcp_udp_compute_checksum (vm, b, ip4);
60 }
61}
62
63static_always_inline void
Mohsin Kazmi68095382021-02-10 11:26:24 +010064vnet_calc_ip6_checksums (vlib_main_t *vm, vlib_buffer_t *b, ip6_header_t *ip6,
65 tcp_header_t *th, udp_header_t *uh, u32 oflags)
Mohsin Kazmi0b042092020-04-17 16:50:56 +000066{
67 int bogus;
Mohsin Kazmi68095382021-02-10 11:26:24 +010068 if (oflags & VNET_BUFFER_OFFLOAD_F_TCP_CKSUM)
Mohsin Kazmi0b042092020-04-17 16:50:56 +000069 {
70 th->checksum = 0;
71 th->checksum = ip6_tcp_udp_icmp_compute_checksum (vm, b, ip6, &bogus);
72 }
Mohsin Kazmi68095382021-02-10 11:26:24 +010073 if (oflags & VNET_BUFFER_OFFLOAD_F_UDP_CKSUM)
Mohsin Kazmi0b042092020-04-17 16:50:56 +000074 {
75 uh->checksum = 0;
76 uh->checksum = ip6_tcp_udp_icmp_compute_checksum (vm, b, ip6, &bogus);
77 }
78}
Neale Ranns25edf142019-03-22 08:12:48 +000079
80static_always_inline void
Dave Barach1bd2c012020-04-12 08:31:39 -040081vnet_calc_checksums_inline (vlib_main_t * vm, vlib_buffer_t * b,
Vladimir Isaev698eb872020-05-21 16:34:17 +030082 int is_ip4, int is_ip6)
Neale Ranns25edf142019-03-22 08:12:48 +000083{
84 ip4_header_t *ip4;
85 ip6_header_t *ip6;
86 tcp_header_t *th;
87 udp_header_t *uh;
Mohsin Kazmi68095382021-02-10 11:26:24 +010088 u32 oflags = vnet_buffer2 (b)->oflags;
Neale Ranns25edf142019-03-22 08:12:48 +000089
Aloys Augustinac6c5282021-04-15 18:12:51 +020090 if (!(b->flags & VNET_BUFFER_F_OFFLOAD))
91 return;
92
Vladimir Isaev698eb872020-05-21 16:34:17 +030093 ASSERT (!(is_ip4 && is_ip6));
94
95 ip4 = (ip4_header_t *) (b->data + vnet_buffer (b)->l3_hdr_offset);
96 ip6 = (ip6_header_t *) (b->data + vnet_buffer (b)->l3_hdr_offset);
97 th = (tcp_header_t *) (b->data + vnet_buffer (b)->l4_hdr_offset);
98 uh = (udp_header_t *) (b->data + vnet_buffer (b)->l4_hdr_offset);
99
100 if (is_ip4)
Dave Barach1bd2c012020-04-12 08:31:39 -0400101 {
Mohsin Kazmi68095382021-02-10 11:26:24 +0100102 vnet_calc_ip4_checksums (vm, b, ip4, th, uh, oflags);
Dave Barach1bd2c012020-04-12 08:31:39 -0400103 }
Vladimir Isaev698eb872020-05-21 16:34:17 +0300104 else if (is_ip6)
Dave Barach1bd2c012020-04-12 08:31:39 -0400105 {
Mohsin Kazmi68095382021-02-10 11:26:24 +0100106 vnet_calc_ip6_checksums (vm, b, ip6, th, uh, oflags);
Neale Ranns25edf142019-03-22 08:12:48 +0000107 }
Vladimir Isaev698eb872020-05-21 16:34:17 +0300108
Mohsin Kazmi68095382021-02-10 11:26:24 +0100109 vnet_buffer_offload_flags_clear (b, (VNET_BUFFER_OFFLOAD_F_IP_CKSUM |
110 VNET_BUFFER_OFFLOAD_F_UDP_CKSUM |
111 VNET_BUFFER_OFFLOAD_F_TCP_CKSUM));
Neale Ranns25edf142019-03-22 08:12:48 +0000112}
113
114#endif
115
116/*
117 * fd.io coding-style-patch-verification: ON
118 *
119 * Local Variables:
120 * eval: (c-set-style "gnu")
121 * End:
122 */