selftests/bpf: Remove a lot of ifobject casting
Instead of passing void * all over the place, let us pass the actual type (ifobject) and remove the void-ptr-to-type-ptr casting. Signed-off-by: Björn Töpel <bjorn.topel@intel.com> Signed-off-by: Daniel Borkmann <daniel@iogearbox.net> Link: https://lore.kernel.org/bpf/20210122154725.22140-2-bjorn.topel@gmail.com
This commit is contained in:
parent
78ed404591
commit
7140ef1400
|
@ -224,14 +224,14 @@ static inline u16 udp_csum(u32 saddr, u32 daddr, u32 len, u8 proto, u16 *udp_pkt
|
|||
return csum_tcpudp_magic(saddr, daddr, len, proto, csum);
|
||||
}
|
||||
|
||||
static void gen_eth_hdr(void *data, struct ethhdr *eth_hdr)
|
||||
static void gen_eth_hdr(struct ifobject *ifobject, struct ethhdr *eth_hdr)
|
||||
{
|
||||
memcpy(eth_hdr->h_dest, ((struct ifobject *)data)->dst_mac, ETH_ALEN);
|
||||
memcpy(eth_hdr->h_source, ((struct ifobject *)data)->src_mac, ETH_ALEN);
|
||||
memcpy(eth_hdr->h_dest, ifobject->dst_mac, ETH_ALEN);
|
||||
memcpy(eth_hdr->h_source, ifobject->src_mac, ETH_ALEN);
|
||||
eth_hdr->h_proto = htons(ETH_P_IP);
|
||||
}
|
||||
|
||||
static void gen_ip_hdr(void *data, struct iphdr *ip_hdr)
|
||||
static void gen_ip_hdr(struct ifobject *ifobject, struct iphdr *ip_hdr)
|
||||
{
|
||||
ip_hdr->version = IP_PKT_VER;
|
||||
ip_hdr->ihl = 0x5;
|
||||
|
@ -241,15 +241,15 @@ static void gen_ip_hdr(void *data, struct iphdr *ip_hdr)
|
|||
ip_hdr->frag_off = 0;
|
||||
ip_hdr->ttl = IPDEFTTL;
|
||||
ip_hdr->protocol = IPPROTO_UDP;
|
||||
ip_hdr->saddr = ((struct ifobject *)data)->src_ip;
|
||||
ip_hdr->daddr = ((struct ifobject *)data)->dst_ip;
|
||||
ip_hdr->saddr = ifobject->src_ip;
|
||||
ip_hdr->daddr = ifobject->dst_ip;
|
||||
ip_hdr->check = 0;
|
||||
}
|
||||
|
||||
static void gen_udp_hdr(void *data, void *arg, struct udphdr *udp_hdr)
|
||||
static void gen_udp_hdr(void *data, struct ifobject *ifobject, struct udphdr *udp_hdr)
|
||||
{
|
||||
udp_hdr->source = htons(((struct ifobject *)arg)->src_port);
|
||||
udp_hdr->dest = htons(((struct ifobject *)arg)->dst_port);
|
||||
udp_hdr->source = htons(ifobject->src_port);
|
||||
udp_hdr->dest = htons(ifobject->dst_port);
|
||||
udp_hdr->len = htons(UDP_PKT_SIZE);
|
||||
memset32_htonl(pkt_data + PKT_HDR_SIZE,
|
||||
htonl(((struct generic_data *)data)->seqnum), UDP_PKT_DATA_SIZE);
|
||||
|
@ -628,28 +628,27 @@ static inline int get_batch_size(int pkt_cnt)
|
|||
return opt_pkt_count - pkt_cnt;
|
||||
}
|
||||
|
||||
static void complete_tx_only_all(void *arg)
|
||||
static void complete_tx_only_all(struct ifobject *ifobject)
|
||||
{
|
||||
bool pending;
|
||||
|
||||
do {
|
||||
pending = false;
|
||||
if (((struct ifobject *)arg)->xsk->outstanding_tx) {
|
||||
complete_tx_only(((struct ifobject *)
|
||||
arg)->xsk, BATCH_SIZE);
|
||||
pending = !!((struct ifobject *)arg)->xsk->outstanding_tx;
|
||||
if (ifobject->xsk->outstanding_tx) {
|
||||
complete_tx_only(ifobject->xsk, BATCH_SIZE);
|
||||
pending = !!ifobject->xsk->outstanding_tx;
|
||||
}
|
||||
} while (pending);
|
||||
}
|
||||
|
||||
static void tx_only_all(void *arg)
|
||||
static void tx_only_all(struct ifobject *ifobject)
|
||||
{
|
||||
struct pollfd fds[MAX_SOCKS] = { };
|
||||
u32 frame_nb = 0;
|
||||
int pkt_cnt = 0;
|
||||
int ret;
|
||||
|
||||
fds[0].fd = xsk_socket__fd(((struct ifobject *)arg)->xsk->xsk);
|
||||
fds[0].fd = xsk_socket__fd(ifobject->xsk->xsk);
|
||||
fds[0].events = POLLOUT;
|
||||
|
||||
while ((opt_pkt_count && pkt_cnt < opt_pkt_count) || !opt_pkt_count) {
|
||||
|
@ -664,12 +663,12 @@ static void tx_only_all(void *arg)
|
|||
continue;
|
||||
}
|
||||
|
||||
tx_only(((struct ifobject *)arg)->xsk, &frame_nb, batch_size);
|
||||
tx_only(ifobject->xsk, &frame_nb, batch_size);
|
||||
pkt_cnt += batch_size;
|
||||
}
|
||||
|
||||
if (opt_pkt_count)
|
||||
complete_tx_only_all(arg);
|
||||
complete_tx_only_all(ifobject);
|
||||
}
|
||||
|
||||
static void worker_pkt_dump(void)
|
||||
|
@ -780,14 +779,14 @@ static void worker_pkt_validate(void)
|
|||
}
|
||||
}
|
||||
|
||||
static void thread_common_ops(void *arg, void *bufs, pthread_mutex_t *mutexptr,
|
||||
static void thread_common_ops(struct ifobject *ifobject, void *bufs, pthread_mutex_t *mutexptr,
|
||||
atomic_int *spinningptr)
|
||||
{
|
||||
int ctr = 0;
|
||||
int ret;
|
||||
|
||||
xsk_configure_umem((struct ifobject *)arg, bufs, num_frames * XSK_UMEM__DEFAULT_FRAME_SIZE);
|
||||
ret = xsk_configure_socket((struct ifobject *)arg);
|
||||
xsk_configure_umem(ifobject, bufs, num_frames * XSK_UMEM__DEFAULT_FRAME_SIZE);
|
||||
ret = xsk_configure_socket(ifobject);
|
||||
|
||||
/* Retry Create Socket if it fails as xsk_socket__create()
|
||||
* is asynchronous
|
||||
|
@ -798,9 +797,8 @@ static void thread_common_ops(void *arg, void *bufs, pthread_mutex_t *mutexptr,
|
|||
pthread_mutex_lock(mutexptr);
|
||||
while (ret && ctr < SOCK_RECONF_CTR) {
|
||||
atomic_store(spinningptr, 1);
|
||||
xsk_configure_umem((struct ifobject *)arg,
|
||||
bufs, num_frames * XSK_UMEM__DEFAULT_FRAME_SIZE);
|
||||
ret = xsk_configure_socket((struct ifobject *)arg);
|
||||
xsk_configure_umem(ifobject, bufs, num_frames * XSK_UMEM__DEFAULT_FRAME_SIZE);
|
||||
ret = xsk_configure_socket(ifobject);
|
||||
usleep(USLEEP_MAX);
|
||||
ctr++;
|
||||
}
|
||||
|
@ -818,6 +816,7 @@ static void *worker_testapp_validate(void *arg)
|
|||
struct generic_data *data = (struct generic_data *)malloc(sizeof(struct generic_data));
|
||||
struct iphdr *ip_hdr = (struct iphdr *)(pkt_data + sizeof(struct ethhdr));
|
||||
struct ethhdr *eth_hdr = (struct ethhdr *)pkt_data;
|
||||
struct ifobject *ifobject = (struct ifobject *)arg;
|
||||
void *bufs = NULL;
|
||||
|
||||
pthread_attr_setstacksize(&attr, THREAD_STACK);
|
||||
|
@ -828,49 +827,48 @@ static void *worker_testapp_validate(void *arg)
|
|||
if (bufs == MAP_FAILED)
|
||||
exit_with_error(errno);
|
||||
|
||||
if (strcmp(((struct ifobject *)arg)->nsname, ""))
|
||||
switch_namespace(((struct ifobject *)arg)->ifdict_index);
|
||||
if (strcmp(ifobject->nsname, ""))
|
||||
switch_namespace(ifobject->ifdict_index);
|
||||
}
|
||||
|
||||
if (((struct ifobject *)arg)->fv.vector == tx) {
|
||||
if (ifobject->fv.vector == tx) {
|
||||
int spinningrxctr = 0;
|
||||
|
||||
if (!bidi_pass)
|
||||
thread_common_ops(arg, bufs, &sync_mutex_tx, &spinning_tx);
|
||||
thread_common_ops(ifobject, bufs, &sync_mutex_tx, &spinning_tx);
|
||||
|
||||
while (atomic_load(&spinning_rx) && spinningrxctr < SOCK_RECONF_CTR) {
|
||||
spinningrxctr++;
|
||||
usleep(USLEEP_MAX);
|
||||
}
|
||||
|
||||
ksft_print_msg("Interface [%s] vector [Tx]\n", ((struct ifobject *)arg)->ifname);
|
||||
ksft_print_msg("Interface [%s] vector [Tx]\n", ifobject->ifname);
|
||||
for (int i = 0; i < num_frames; i++) {
|
||||
/*send EOT frame */
|
||||
if (i == (num_frames - 1))
|
||||
data->seqnum = -1;
|
||||
else
|
||||
data->seqnum = i;
|
||||
gen_udp_hdr((void *)data, (void *)arg, udp_hdr);
|
||||
gen_ip_hdr((void *)arg, ip_hdr);
|
||||
gen_udp_hdr((void *)data, ifobject, udp_hdr);
|
||||
gen_ip_hdr(ifobject, ip_hdr);
|
||||
gen_udp_csum(udp_hdr, ip_hdr);
|
||||
gen_eth_hdr((void *)arg, eth_hdr);
|
||||
gen_eth_frame(((struct ifobject *)arg)->umem,
|
||||
i * XSK_UMEM__DEFAULT_FRAME_SIZE);
|
||||
gen_eth_hdr(ifobject, eth_hdr);
|
||||
gen_eth_frame(ifobject->umem, i * XSK_UMEM__DEFAULT_FRAME_SIZE);
|
||||
}
|
||||
|
||||
free(data);
|
||||
ksft_print_msg("Sending %d packets on interface %s\n",
|
||||
(opt_pkt_count - 1), ((struct ifobject *)arg)->ifname);
|
||||
tx_only_all(arg);
|
||||
} else if (((struct ifobject *)arg)->fv.vector == rx) {
|
||||
(opt_pkt_count - 1), ifobject->ifname);
|
||||
tx_only_all(ifobject);
|
||||
} else if (ifobject->fv.vector == rx) {
|
||||
struct pollfd fds[MAX_SOCKS] = { };
|
||||
int ret;
|
||||
|
||||
if (!bidi_pass)
|
||||
thread_common_ops(arg, bufs, &sync_mutex_tx, &spinning_rx);
|
||||
thread_common_ops(ifobject, bufs, &sync_mutex_tx, &spinning_rx);
|
||||
|
||||
ksft_print_msg("Interface [%s] vector [Rx]\n", ((struct ifobject *)arg)->ifname);
|
||||
xsk_populate_fill_ring(((struct ifobject *)arg)->umem);
|
||||
ksft_print_msg("Interface [%s] vector [Rx]\n", ifobject->ifname);
|
||||
xsk_populate_fill_ring(ifobject->umem);
|
||||
|
||||
TAILQ_INIT(&head);
|
||||
if (debug_pkt_dump) {
|
||||
|
@ -879,7 +877,7 @@ static void *worker_testapp_validate(void *arg)
|
|||
exit_with_error(errno);
|
||||
}
|
||||
|
||||
fds[0].fd = xsk_socket__fd(((struct ifobject *)arg)->xsk->xsk);
|
||||
fds[0].fd = xsk_socket__fd(ifobject->xsk->xsk);
|
||||
fds[0].events = POLLIN;
|
||||
|
||||
pthread_mutex_lock(&sync_mutex);
|
||||
|
@ -892,7 +890,7 @@ static void *worker_testapp_validate(void *arg)
|
|||
if (ret <= 0)
|
||||
continue;
|
||||
}
|
||||
rx_pkt(((struct ifobject *)arg)->xsk, fds);
|
||||
rx_pkt(ifobject->xsk, fds);
|
||||
worker_pkt_validate();
|
||||
|
||||
if (sigvar)
|
||||
|
@ -900,15 +898,15 @@ static void *worker_testapp_validate(void *arg)
|
|||
}
|
||||
|
||||
ksft_print_msg("Received %d packets on interface %s\n",
|
||||
pkt_counter, ((struct ifobject *)arg)->ifname);
|
||||
pkt_counter, ifobject->ifname);
|
||||
|
||||
if (opt_teardown)
|
||||
ksft_print_msg("Destroying socket\n");
|
||||
}
|
||||
|
||||
if (!opt_bidi || (opt_bidi && bidi_pass)) {
|
||||
xsk_socket__delete(((struct ifobject *)arg)->xsk->xsk);
|
||||
(void)xsk_umem__delete(((struct ifobject *)arg)->umem->umem);
|
||||
xsk_socket__delete(ifobject->xsk->xsk);
|
||||
(void)xsk_umem__delete(ifobject->umem->umem);
|
||||
}
|
||||
pthread_exit(NULL);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue