DPDK  18.05.1
rte_net.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright 2016 6WIND S.A.
3  */
4 
5 #ifndef _RTE_NET_PTYPE_H_
6 #define _RTE_NET_PTYPE_H_
7 
8 #ifdef __cplusplus
9 extern "C" {
10 #endif
11 
12 #include <rte_ip.h>
13 #include <rte_udp.h>
14 #include <rte_tcp.h>
15 #include <rte_sctp.h>
16 
22  uint8_t l2_len;
23  uint8_t l3_len;
24  uint8_t l4_len;
25  uint8_t tunnel_len;
26  uint8_t inner_l2_len;
27  uint8_t inner_l3_len;
28  uint8_t inner_l4_len;
29 };
30 
54 int __rte_experimental
55 rte_net_skip_ip6_ext(uint16_t proto, const struct rte_mbuf *m, uint32_t *off,
56  int *frag);
57 
89 uint32_t rte_net_get_ptype(const struct rte_mbuf *m,
90  struct rte_net_hdr_lens *hdr_lens, uint32_t layers);
91 
112 static inline int
113 rte_net_intel_cksum_flags_prepare(struct rte_mbuf *m, uint64_t ol_flags)
114 {
115  struct ipv4_hdr *ipv4_hdr;
116  struct ipv6_hdr *ipv6_hdr;
117  struct tcp_hdr *tcp_hdr;
118  struct udp_hdr *udp_hdr;
119  uint64_t inner_l3_offset = m->l2_len;
120 
121  if ((ol_flags & PKT_TX_OUTER_IP_CKSUM) ||
122  (ol_flags & PKT_TX_OUTER_IPV6))
123  inner_l3_offset += m->outer_l2_len + m->outer_l3_len;
124 
125  if ((ol_flags & PKT_TX_UDP_CKSUM) == PKT_TX_UDP_CKSUM) {
126  if (ol_flags & PKT_TX_IPV4) {
127  ipv4_hdr = rte_pktmbuf_mtod_offset(m, struct ipv4_hdr *,
128  inner_l3_offset);
129 
130  if (ol_flags & PKT_TX_IP_CKSUM)
131  ipv4_hdr->hdr_checksum = 0;
132 
133  udp_hdr = (struct udp_hdr *)((char *)ipv4_hdr +
134  m->l3_len);
135  udp_hdr->dgram_cksum = rte_ipv4_phdr_cksum(ipv4_hdr,
136  ol_flags);
137  } else {
138  ipv6_hdr = rte_pktmbuf_mtod_offset(m, struct ipv6_hdr *,
139  inner_l3_offset);
140  /* non-TSO udp */
141  udp_hdr = rte_pktmbuf_mtod_offset(m, struct udp_hdr *,
142  inner_l3_offset + m->l3_len);
143  udp_hdr->dgram_cksum = rte_ipv6_phdr_cksum(ipv6_hdr,
144  ol_flags);
145  }
146  } else if ((ol_flags & PKT_TX_TCP_CKSUM) ||
147  (ol_flags & PKT_TX_TCP_SEG)) {
148  if (ol_flags & PKT_TX_IPV4) {
149  ipv4_hdr = rte_pktmbuf_mtod_offset(m, struct ipv4_hdr *,
150  inner_l3_offset);
151 
152  if (ol_flags & PKT_TX_IP_CKSUM)
153  ipv4_hdr->hdr_checksum = 0;
154 
155  /* non-TSO tcp or TSO */
156  tcp_hdr = (struct tcp_hdr *)((char *)ipv4_hdr +
157  m->l3_len);
158  tcp_hdr->cksum = rte_ipv4_phdr_cksum(ipv4_hdr,
159  ol_flags);
160  } else {
161  ipv6_hdr = rte_pktmbuf_mtod_offset(m, struct ipv6_hdr *,
162  inner_l3_offset);
163  /* non-TSO tcp or TSO */
164  tcp_hdr = rte_pktmbuf_mtod_offset(m, struct tcp_hdr *,
165  inner_l3_offset + m->l3_len);
166  tcp_hdr->cksum = rte_ipv6_phdr_cksum(ipv6_hdr,
167  ol_flags);
168  }
169  }
170 
171  return 0;
172 }
173 
192 static inline int
193 rte_net_intel_cksum_prepare(struct rte_mbuf *m)
194 {
195  return rte_net_intel_cksum_flags_prepare(m, m->ol_flags);
196 }
197 
198 #ifdef __cplusplus
199 }
200 #endif
201 
202 
203 #endif /* _RTE_NET_PTYPE_H_ */