1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197
|
/* SPDX-License-Identifier: BSD-3-Clause
* Copyright(C) 2023 Marvell.
*/
#include <arpa/inet.h>
#include <stdlib.h>
#include <sys/socket.h>
#include <eal_export.h>
#include <rte_cycles.h>
#include <rte_debug.h>
#include <rte_ethdev.h>
#include <rte_ether.h>
#include <rte_graph.h>
#include <rte_graph_worker.h>
#include <rte_ip.h>
#include <rte_ip_frag.h>
#include <rte_mbuf.h>
#include <rte_tcp.h>
#include <rte_udp.h>
#include "rte_node_ip4_api.h"
#include "ip4_reassembly_priv.h"
#include "node_private.h"
struct ip4_reassembly_elem {
struct ip4_reassembly_elem *next;
struct ip4_reassembly_ctx ctx;
rte_node_t node_id;
};
/* IP4 reassembly global data struct */
struct ip4_reassembly_node_main {
struct ip4_reassembly_elem *head;
};
typedef struct ip4_reassembly_ctx ip4_reassembly_ctx_t;
typedef struct ip4_reassembly_elem ip4_reassembly_elem_t;
static struct ip4_reassembly_node_main ip4_reassembly_main;
static uint16_t
ip4_reassembly_node_process(struct rte_graph *graph, struct rte_node *node, void **objs,
uint16_t nb_objs)
{
#define PREFETCH_OFFSET 4
struct rte_mbuf *mbuf, *mbuf_out;
struct rte_ip_frag_death_row *dr;
struct ip4_reassembly_ctx *ctx;
struct rte_ipv4_hdr *ipv4_hdr;
struct rte_ip_frag_tbl *tbl;
void **to_next, **to_free;
uint16_t idx = 0;
int i;
ctx = (struct ip4_reassembly_ctx *)node->ctx;
/* Get core specific reassembly tbl */
tbl = ctx->tbl;
dr = ctx->dr;
for (i = 0; i < PREFETCH_OFFSET && i < nb_objs; i++) {
rte_prefetch0(rte_pktmbuf_mtod_offset((struct rte_mbuf *)objs[i], void *,
sizeof(struct rte_ether_hdr)));
}
to_next = node->objs;
for (i = 0; i < nb_objs - PREFETCH_OFFSET; i++) {
#if RTE_GRAPH_BURST_SIZE > 64
/* Prefetch next-next mbufs */
if (likely(i + 8 < nb_objs))
rte_prefetch0(objs[i + 8]);
#endif
rte_prefetch0(rte_pktmbuf_mtod_offset((struct rte_mbuf *)objs[i + PREFETCH_OFFSET],
void *, sizeof(struct rte_ether_hdr)));
mbuf = (struct rte_mbuf *)objs[i];
ipv4_hdr = rte_pktmbuf_mtod_offset(mbuf, struct rte_ipv4_hdr *,
sizeof(struct rte_ether_hdr));
if (rte_ipv4_frag_pkt_is_fragmented(ipv4_hdr)) {
/* prepare mbuf: setup l2_len/l3_len. */
mbuf->l2_len = sizeof(struct rte_ether_hdr);
mbuf->l3_len = sizeof(struct rte_ipv4_hdr);
mbuf_out = rte_ipv4_frag_reassemble_packet(tbl, dr, mbuf, rte_rdtsc(),
ipv4_hdr);
} else {
mbuf_out = mbuf;
}
if (mbuf_out)
to_next[idx++] = (void *)mbuf_out;
}
for (; i < nb_objs; i++) {
mbuf = (struct rte_mbuf *)objs[i];
ipv4_hdr = rte_pktmbuf_mtod_offset(mbuf, struct rte_ipv4_hdr *,
sizeof(struct rte_ether_hdr));
if (rte_ipv4_frag_pkt_is_fragmented(ipv4_hdr)) {
/* prepare mbuf: setup l2_len/l3_len. */
mbuf->l2_len = sizeof(struct rte_ether_hdr);
mbuf->l3_len = sizeof(struct rte_ipv4_hdr);
mbuf_out = rte_ipv4_frag_reassemble_packet(tbl, dr, mbuf, rte_rdtsc(),
ipv4_hdr);
} else {
mbuf_out = mbuf;
}
if (mbuf_out)
to_next[idx++] = (void *)mbuf_out;
}
node->idx = idx;
rte_node_next_stream_move(graph, node, 1);
if (dr->cnt) {
to_free = rte_node_next_stream_get(graph, node,
RTE_NODE_IP4_REASSEMBLY_NEXT_PKT_DROP, dr->cnt);
rte_memcpy(to_free, dr->row, dr->cnt * sizeof(to_free[0]));
rte_node_next_stream_put(graph, node, RTE_NODE_IP4_REASSEMBLY_NEXT_PKT_DROP,
dr->cnt);
idx += dr->cnt;
NODE_INCREMENT_XSTAT_ID(node, 0, dr->cnt, dr->cnt);
dr->cnt = 0;
}
return idx;
}
RTE_EXPORT_EXPERIMENTAL_SYMBOL(rte_node_ip4_reassembly_configure, 23.11)
int
rte_node_ip4_reassembly_configure(struct rte_node_ip4_reassembly_cfg *cfg, uint16_t cnt)
{
ip4_reassembly_elem_t *elem;
int i;
for (i = 0; i < cnt; i++) {
elem = malloc(sizeof(ip4_reassembly_elem_t));
if (elem == NULL)
return -ENOMEM;
elem->ctx.dr = cfg[i].dr;
elem->ctx.tbl = cfg[i].tbl;
elem->node_id = cfg[i].node_id;
elem->next = ip4_reassembly_main.head;
ip4_reassembly_main.head = elem;
}
return 0;
}
static int
ip4_reassembly_node_init(const struct rte_graph *graph, struct rte_node *node)
{
ip4_reassembly_ctx_t *ctx = (ip4_reassembly_ctx_t *)node->ctx;
ip4_reassembly_elem_t *elem = ip4_reassembly_main.head;
RTE_SET_USED(graph);
while (elem) {
if (elem->node_id == node->id) {
/* Update node specific context */
*ctx = elem->ctx;
break;
}
elem = elem->next;
}
return 0;
}
static struct rte_node_xstats ip4_reassembly_xstats = {
.nb_xstats = 1,
.xstat_desc = {
[0] = "ip4_reassembly_error",
},
};
static struct rte_node_register ip4_reassembly_node = {
.process = ip4_reassembly_node_process,
.name = "ip4_reassembly",
.init = ip4_reassembly_node_init,
.xstats = &ip4_reassembly_xstats,
.nb_edges = RTE_NODE_IP4_REASSEMBLY_NEXT_PKT_DROP + 1,
.next_nodes = {
[RTE_NODE_IP4_REASSEMBLY_NEXT_PKT_DROP] = "pkt_drop",
},
};
struct rte_node_register *
ip4_reassembly_node_get(void)
{
return &ip4_reassembly_node;
}
RTE_NODE_REGISTER(ip4_reassembly_node);
|