blob: eaac401f22302d94442672fe4536df98914dbfa3 [file] [log] [blame]
Mohsin Kazmif5462362021-02-23 15:55:04 +01001/*
2 * SPDX-License-Identifier: Apache-2.0
3 * Copyright(c) 2021 Cisco Systems, Inc.
4 */
5
6#ifndef included_ip_psh_cksum_h
7#define included_ip_psh_cksum_h
8
9#include <vnet/ip/ip.h>
10
11typedef struct _ip4_psh
12{
13 ip4_address_t src;
14 ip4_address_t dst;
15 u8 zero;
16 u8 proto;
17 u16 l4len;
18} ip4_psh_t;
19
20typedef struct _ip6_psh
21{
22 ip6_address_t src;
23 ip6_address_t dst;
24 u32 l4len;
25 u32 proto;
26} ip6_psh_t;
27
28STATIC_ASSERT (sizeof (ip4_psh_t) == 12, "ipv4 pseudo header is 12B");
29STATIC_ASSERT (sizeof (ip6_psh_t) == 40, "ipv6 pseudo header is 40B");
30
31static_always_inline u16
32ip4_pseudo_header_cksum (ip4_header_t *ip4)
33{
34 ip4_psh_t psh = { 0 };
35 psh.src = ip4->src_address;
36 psh.dst = ip4->dst_address;
37 psh.proto = ip4->protocol;
38 psh.l4len = clib_host_to_net_u16 (clib_net_to_host_u16 (ip4->length) -
39 sizeof (ip4_header_t));
40 return ~clib_net_to_host_u16 (ip_csum (&psh, sizeof (ip4_psh_t)));
41}
42
43static_always_inline u16
44ip6_pseudo_header_cksum (ip6_header_t *ip6)
45{
46 ip6_psh_t psh = { 0 };
47 psh.src = ip6->src_address;
48 psh.dst = ip6->dst_address;
49 psh.l4len = ip6->payload_length;
50 psh.proto = clib_host_to_net_u32 ((u32) ip6->protocol);
51 return ~clib_net_to_host_u16 (ip_csum (&psh, sizeof (ip6_psh_t)));
52}
53
54#endif /* included_ip_psh_cksum_h */