4 * Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
11 * * Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * * Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in
15 * the documentation and/or other materials provided with the
17 * * Neither the name of Intel Corporation nor the names of its
18 * contributors may be used to endorse or promote products derived
19 * from this software without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35 #include <rte_ether.h>
36 #include <rte_ip_frag.h>
37 #include <rte_cycles.h>
40 #include "rte_port_ras.h"
42 #ifndef RTE_PORT_RAS_N_BUCKETS
43 #define RTE_PORT_RAS_N_BUCKETS 4094
46 #ifndef RTE_PORT_RAS_N_ENTRIES_PER_BUCKET
47 #define RTE_PORT_RAS_N_ENTRIES_PER_BUCKET 8
50 #ifndef RTE_PORT_RAS_N_ENTRIES
51 #define RTE_PORT_RAS_N_ENTRIES (RTE_PORT_RAS_N_BUCKETS * RTE_PORT_RAS_N_ENTRIES_PER_BUCKET)
54 #ifdef RTE_PORT_STATS_COLLECT
56 #define RTE_PORT_RING_WRITER_RAS_STATS_PKTS_IN_ADD(port, val) \
57 port->stats.n_pkts_in += val
58 #define RTE_PORT_RING_WRITER_RAS_STATS_PKTS_DROP_ADD(port, val) \
59 port->stats.n_pkts_drop += val
63 #define RTE_PORT_RING_WRITER_RAS_STATS_PKTS_IN_ADD(port, val)
64 #define RTE_PORT_RING_WRITER_RAS_STATS_PKTS_DROP_ADD(port, val)
68 struct rte_port_ring_writer_ras;
70 typedef void (*ras_op)(
71 struct rte_port_ring_writer_ras *p,
72 struct rte_mbuf *pkt);
75 process_ipv4(struct rte_port_ring_writer_ras *p, struct rte_mbuf *pkt);
77 process_ipv6(struct rte_port_ring_writer_ras *p, struct rte_mbuf *pkt);
79 struct rte_port_ring_writer_ras {
80 struct rte_port_out_stats stats;
82 struct rte_mbuf *tx_buf[RTE_PORT_IN_BURST_SIZE_MAX];
83 struct rte_ring *ring;
85 uint32_t tx_buf_count;
86 struct rte_ip_frag_tbl *frag_tbl;
87 struct rte_ip_frag_death_row death_row;
93 rte_port_ring_writer_ras_create(void *params, int socket_id, int is_ipv4)
95 struct rte_port_ring_writer_ras_params *conf =
96 (struct rte_port_ring_writer_ras_params *) params;
97 struct rte_port_ring_writer_ras *port;
100 /* Check input parameters */
102 RTE_LOG(ERR, PORT, "%s: Parameter conf is NULL\n", __func__);
105 if (conf->ring == NULL) {
106 RTE_LOG(ERR, PORT, "%s: Parameter ring is NULL\n", __func__);
109 if ((conf->tx_burst_sz == 0) ||
110 (conf->tx_burst_sz > RTE_PORT_IN_BURST_SIZE_MAX)) {
111 RTE_LOG(ERR, PORT, "%s: Parameter tx_burst_sz is invalid\n",
116 /* Memory allocation */
117 port = rte_zmalloc_socket("PORT", sizeof(*port),
118 RTE_CACHE_LINE_SIZE, socket_id);
120 RTE_LOG(ERR, PORT, "%s: Failed to allocate socket\n", __func__);
124 /* Create fragmentation table */
125 frag_cycles = (rte_get_tsc_hz() + MS_PER_S - 1) / MS_PER_S * MS_PER_S;
128 port->frag_tbl = rte_ip_frag_table_create(
129 RTE_PORT_RAS_N_BUCKETS,
130 RTE_PORT_RAS_N_ENTRIES_PER_BUCKET,
131 RTE_PORT_RAS_N_ENTRIES,
135 if (port->frag_tbl == NULL) {
136 RTE_LOG(ERR, PORT, "%s: rte_ip_frag_table_create failed\n",
143 port->ring = conf->ring;
144 port->tx_burst_sz = conf->tx_burst_sz;
145 port->tx_buf_count = 0;
147 port->f_ras = (is_ipv4 == 0) ? process_ipv4 : process_ipv6;
153 rte_port_ring_writer_ipv4_ras_create(void *params, int socket_id)
155 return rte_port_ring_writer_ras_create(params, socket_id, 1);
159 rte_port_ring_writer_ipv6_ras_create(void *params, int socket_id)
161 return rte_port_ring_writer_ras_create(params, socket_id, 0);
165 send_burst(struct rte_port_ring_writer_ras *p)
169 nb_tx = rte_ring_sp_enqueue_burst(p->ring, (void **)p->tx_buf,
172 RTE_PORT_RING_WRITER_RAS_STATS_PKTS_DROP_ADD(p, p->tx_buf_count - nb_tx);
173 for ( ; nb_tx < p->tx_buf_count; nb_tx++)
174 rte_pktmbuf_free(p->tx_buf[nb_tx]);
180 process_ipv4(struct rte_port_ring_writer_ras *p, struct rte_mbuf *pkt)
182 /* Assume there is no ethernet header */
183 struct ipv4_hdr *pkt_hdr = rte_pktmbuf_mtod(pkt, struct ipv4_hdr *);
185 /* Get "Do not fragment" flag and fragment offset */
186 uint16_t frag_field = rte_be_to_cpu_16(pkt_hdr->fragment_offset);
187 uint16_t frag_offset = (uint16_t)(frag_field & IPV4_HDR_OFFSET_MASK);
188 uint16_t frag_flag = (uint16_t)(frag_field & IPV4_HDR_MF_FLAG);
190 /* If it is a fragmented packet, then try to reassemble */
191 if ((frag_flag == 0) && (frag_offset == 0))
192 p->tx_buf[p->tx_buf_count++] = pkt;
195 struct rte_ip_frag_tbl *tbl = p->frag_tbl;
196 struct rte_ip_frag_death_row *dr = &p->death_row;
198 /* Process this fragment */
199 mo = rte_ipv4_frag_reassemble_packet(tbl, dr, pkt, rte_rdtsc(),
202 p->tx_buf[p->tx_buf_count++] = mo;
204 rte_ip_frag_free_death_row(&p->death_row, 3);
209 process_ipv6(struct rte_port_ring_writer_ras *p, struct rte_mbuf *pkt)
211 /* Assume there is no ethernet header */
212 struct ipv6_hdr *pkt_hdr = rte_pktmbuf_mtod(pkt, struct ipv6_hdr *);
214 struct ipv6_extension_fragment *frag_hdr;
215 frag_hdr = rte_ipv6_frag_get_ipv6_fragment_header(pkt_hdr);
216 uint16_t frag_offset = frag_hdr->frag_offset;
217 uint16_t frag_flag = frag_hdr->more_frags;
219 /* If it is a fragmented packet, then try to reassemble */
220 if ((frag_flag == 0) && (frag_offset == 0))
221 p->tx_buf[p->tx_buf_count++] = pkt;
224 struct rte_ip_frag_tbl *tbl = p->frag_tbl;
225 struct rte_ip_frag_death_row *dr = &p->death_row;
227 /* Process this fragment */
228 mo = rte_ipv6_frag_reassemble_packet(tbl, dr, pkt, rte_rdtsc(), pkt_hdr,
231 p->tx_buf[p->tx_buf_count++] = mo;
233 rte_ip_frag_free_death_row(&p->death_row, 3);
238 rte_port_ring_writer_ras_tx(void *port, struct rte_mbuf *pkt)
240 struct rte_port_ring_writer_ras *p =
241 (struct rte_port_ring_writer_ras *) port;
243 RTE_PORT_RING_WRITER_RAS_STATS_PKTS_IN_ADD(p, 1);
245 if (p->tx_buf_count >= p->tx_burst_sz)
252 rte_port_ring_writer_ras_tx_bulk(void *port,
253 struct rte_mbuf **pkts,
256 struct rte_port_ring_writer_ras *p =
257 (struct rte_port_ring_writer_ras *) port;
259 if ((pkts_mask & (pkts_mask + 1)) == 0) {
260 uint64_t n_pkts = __builtin_popcountll(pkts_mask);
263 for (i = 0; i < n_pkts; i++) {
264 struct rte_mbuf *pkt = pkts[i];
266 RTE_PORT_RING_WRITER_RAS_STATS_PKTS_IN_ADD(p, 1);
268 if (p->tx_buf_count >= p->tx_burst_sz)
272 for ( ; pkts_mask; ) {
273 uint32_t pkt_index = __builtin_ctzll(pkts_mask);
274 uint64_t pkt_mask = 1LLU << pkt_index;
275 struct rte_mbuf *pkt = pkts[pkt_index];
277 RTE_PORT_RING_WRITER_RAS_STATS_PKTS_IN_ADD(p, 1);
279 if (p->tx_buf_count >= p->tx_burst_sz)
282 pkts_mask &= ~pkt_mask;
290 rte_port_ring_writer_ras_flush(void *port)
292 struct rte_port_ring_writer_ras *p =
293 (struct rte_port_ring_writer_ras *) port;
295 if (p->tx_buf_count > 0)
302 rte_port_ring_writer_ras_free(void *port)
304 struct rte_port_ring_writer_ras *p =
305 (struct rte_port_ring_writer_ras *) port;
308 RTE_LOG(ERR, PORT, "%s: Parameter port is NULL\n", __func__);
312 rte_port_ring_writer_ras_flush(port);
313 rte_ip_frag_table_destroy(p->frag_tbl);
320 rte_port_ras_writer_stats_read(void *port,
321 struct rte_port_out_stats *stats, int clear)
323 struct rte_port_ring_writer_ras *p =
324 (struct rte_port_ring_writer_ras *) port;
327 memcpy(stats, &p->stats, sizeof(p->stats));
330 memset(&p->stats, 0, sizeof(p->stats));
336 * Summary of port operations
338 struct rte_port_out_ops rte_port_ring_writer_ipv4_ras_ops = {
339 .f_create = rte_port_ring_writer_ipv4_ras_create,
340 .f_free = rte_port_ring_writer_ras_free,
341 .f_tx = rte_port_ring_writer_ras_tx,
342 .f_tx_bulk = rte_port_ring_writer_ras_tx_bulk,
343 .f_flush = rte_port_ring_writer_ras_flush,
344 .f_stats = rte_port_ras_writer_stats_read,
347 struct rte_port_out_ops rte_port_ring_writer_ipv6_ras_ops = {
348 .f_create = rte_port_ring_writer_ipv6_ras_create,
349 .f_free = rte_port_ring_writer_ras_free,
350 .f_tx = rte_port_ring_writer_ras_tx,
351 .f_tx_bulk = rte_port_ring_writer_ras_tx_bulk,
352 .f_flush = rte_port_ring_writer_ras_flush,
353 .f_stats = rte_port_ras_writer_stats_read,