While capturing ethernet packets using PACKET_MMAP (PACKET_RX_RING) I have more than 50% packet loss at data rate of 100KB/s and higher. Is it common with this kind of technology?
Is there any chance or room for improvement in code/parameters/logic to reduce the packet loss when using PACKET_MMAP with PACKET_RX_RING
#include <stdio.h>
#include <stdio.h>
#include <sys/socket.h>
#include <net/if.h>
#include <linux/if_ether.h>
#include <linux/if_packet.h>
#include <unistd.h>
#include <stdlib.h>
#include <stdint.h>
#include <sys/types.h>
#include <arpa/inet.h>
#include <sys/mman.h>
#include <poll.h>
#include <signal.h>
void handle_frame(struct tpacket_hdr* tphdr, struct sockaddr_ll* addr, char* l2content, char * l3content){
if(tphdr->tp_status & TP_STATUS_USER){
fwrite(l2content,tphdr->tp_snaplen,1,pcapfile);
tphdr->tp_status = TP_STATUS_KERNEL;
}
}
int main(){
file1 = fopen("file1.cap","a+");
int fd = socket(PF_PACKET, SOCK_RAW, htons(ETH_P_ALL));
if (fd == -1) {
perror("socket");
exit(1);
}
struct tpacket_req req = {0};
req.tp_frame_size = TPACKET_ALIGN(TPACKET_HDRLEN + ETH_HLEN) + TPACKET_ALIGN(1500);
req.tp_block_size = sysconf(_SC_PAGESIZE);
while (req.tp_block_size < req.tp_frame_size) {
req.tp_block_size <<= 1;
}
req.tp_block_nr = 4;
size_t frames_per_buffer = req.tp_block_size / req.tp_frame_size;
req.tp_frame_nr = req.tp_block_nr * frames_per_buffer;
int version = TPACKET_V1;
(setsockopt(fd, SOL_PACKET, PACKET_VERSION, &version, sizeof(version));
setsockopt(fd, SOL_PACKET, PACKET_RX_RING, (void*)&req, sizeof(req));
size_t rx_ring_size = req.tp_block_nr * req.tp_block_size;
char* rx_ring = mmap(0, rx_ring_size, PROT_READ|PROT_WRITE, MAP_SHARED, fd, 0);
struct pollfd fds[1] = {0};
fds[0].fd = fd;
fds[0].events = POLLIN;
size_t frame_idx = 0;
char* frame_ptr = rx_ring;
while (1) {
struct tpacket_hdr* tphdr = (struct tpacket_hdr*)frame_ptr;
while (!(tphdr->tp_status & TP_STATUS_USER)) {
if (poll(fds, 1, -1) == -1) {
perror("poll");
exit(1);
}
}
struct sockaddr_ll* addr = (struct sockaddr_ll*)(frame_ptr + TPACKET_HDRLEN - sizeof(struct sockaddr_ll));
char* l2content = frame_ptr + tphdr->tp_mac;
char* l3content = frame_ptr + tphdr->tp_net;
handle_frame(tphdr, addr, l2content, l3content);
frame_idx = (frame_idx + 1) % req.tp_frame_nr;
int buffer_idx = frame_idx / frames_per_buffer;
char* buffer_ptr = rx_ring + buffer_idx * req.tp_block_size;
int frame_idx_diff = frame_idx % frames_per_buffer;
frame_ptr = buffer_ptr + frame_idx_diff * req.tp_frame_size;
}
fflush(pcapfile);
fclose(pcapfile);
}
msgboardpana,
Check you RX ring settings:
tp_block_size = page size
(it equal to several ethernet frames with standard MTU = 1512 byte, for me with 2Kb page it one frame)tp_block_nr = 4
- frame num 4 - pay attention that it physically non-contiguous space! I think that you buffer ring just overflowed. I really recommend you increasetp_block_size
( i use next, my page is 2Kb:)And decrease blocks number.
And additionally, try to decrease syscalls' in your loop cycle - I would recommend to you write to file in separately thread, because of it really heavy syscall(just in case you may check timings), also, I advise you to enable promisc mode on eth - add to init code:
and if you will decide to separate threads for file write and capturing, sched_fifo policy for capture thread:
Regards, Bulat