1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2010-2014 Intel Corporation
5 #ifndef PACKET_BURST_GENERATOR_H_
6 #define PACKET_BURST_GENERATOR_H_
13 #include <rte_ether.h>
20 #define IPV4_ADDR(a, b, c, d)(((a & 0xff) << 24) | ((b & 0xff) << 16) | \
21 ((c & 0xff) << 8) | (d & 0xff))
23 #define PACKET_BURST_GEN_PKT_LEN 60
24 #define PACKET_BURST_GEN_PKT_LEN_128 128
27 initialize_eth_header(struct ether_hdr *eth_hdr, struct ether_addr *src_mac,
28 struct ether_addr *dst_mac, uint16_t ether_type,
29 uint8_t vlan_enabled, uint16_t van_id);
32 initialize_arp_header(struct arp_hdr *arp_hdr, struct ether_addr *src_mac,
33 struct ether_addr *dst_mac, uint32_t src_ip, uint32_t dst_ip,
37 initialize_udp_header(struct udp_hdr *udp_hdr, uint16_t src_port,
38 uint16_t dst_port, uint16_t pkt_data_len);
41 initialize_tcp_header(struct tcp_hdr *tcp_hdr, uint16_t src_port,
42 uint16_t dst_port, uint16_t pkt_data_len);
45 initialize_sctp_header(struct sctp_hdr *sctp_hdr, uint16_t src_port,
46 uint16_t dst_port, uint16_t pkt_data_len);
49 initialize_ipv6_header(struct ipv6_hdr *ip_hdr, uint8_t *src_addr,
50 uint8_t *dst_addr, uint16_t pkt_data_len);
53 initialize_ipv4_header(struct ipv4_hdr *ip_hdr, uint32_t src_addr,
54 uint32_t dst_addr, uint16_t pkt_data_len);
57 initialize_ipv4_header_proto(struct ipv4_hdr *ip_hdr, uint32_t src_addr,
58 uint32_t dst_addr, uint16_t pkt_data_len, uint8_t proto);
61 generate_packet_burst(struct rte_mempool *mp, struct rte_mbuf **pkts_burst,
62 struct ether_hdr *eth_hdr, uint8_t vlan_enabled, void *ip_hdr,
63 uint8_t ipv4, struct udp_hdr *udp_hdr, int nb_pkt_per_burst,
64 uint8_t pkt_len, uint8_t nb_pkt_segs);
67 generate_packet_burst_proto(struct rte_mempool *mp,
68 struct rte_mbuf **pkts_burst,
69 struct ether_hdr *eth_hdr, uint8_t vlan_enabled, void *ip_hdr,
70 uint8_t ipv4, uint8_t proto, void *proto_hdr,
71 int nb_pkt_per_burst, uint8_t pkt_len, uint8_t nb_pkt_segs);
77 #endif /* PACKET_BURST_GENERATOR_H_ */