ring: setup frame structure for v2/v3 in a generic way
[netsniff-ng.git] / ring.h
blobbe04cf0a1173f4e3df9c20d53b9926bfd19e8474
1 /*
2 * netsniff-ng - the packet sniffing beast
3 * Copyright 2009, 2010 Daniel Borkmann.
4 * Subject to the GPL, version 2.
5 */
7 #ifndef RING_H
8 #define RING_H
11 * "I love the smell of 10GbE in the morning. Smells like ... victory."
12 * - W. Richard Stevens, "Secret Teachings of the UNIX Environment"
15 #include <stdio.h>
16 #include <stdint.h>
17 #include <linux/if_packet.h>
18 #include <linux/socket.h>
19 #include <linux/sockios.h>
20 #include <sys/ioctl.h>
21 #include <string.h>
22 #include <poll.h>
23 #include <sys/poll.h>
25 #include "xutils.h"
26 #include "built_in.h"
27 #include "die.h"
29 struct frame_map {
30 struct tpacket2_hdr tp_h __aligned_tpacket;
31 struct sockaddr_ll s_ll __align_tpacket(sizeof(struct tpacket2_hdr));
34 struct block_desc {
35 uint32_t version;
36 uint32_t offset_to_priv;
37 struct tpacket_hdr_v1 h1;
40 struct ring {
41 struct iovec *frames;
42 uint8_t *mm_space;
43 size_t mm_len;
44 struct sockaddr_ll s_ll;
45 union {
46 struct tpacket_req layout;
47 struct tpacket_req3 layout3;
48 uint8_t raw;
52 static inline void next_rnd_slot(unsigned int *it, struct ring *ring)
54 *it = rand() % ring->layout.tp_frame_nr;
57 static inline unsigned int ring_size(char *ifname, unsigned int size)
59 if (size > 0)
60 return size;
63 * Device bitrate in bytes times two as ring size.
64 * Fallback => ~ 64,00 MB
65 * 10 MBit => ~ 2,38 MB
66 * 54 MBit => ~ 12,88 MB
67 * 100 MBit => ~ 23,84 MB
68 * 300 MBit => ~ 71,52 MB
69 * 1.000 MBit => ~ 238,42 MB
70 * 10.000 MBit => ~ 2.384.18 MB
72 size = device_bitrate(ifname);
73 size = (size * 1000000) / 8;
74 size = size * 2;
75 if (size == 0)
76 size = 1 << 26;
78 return round_up_cacheline(size);
81 static inline unsigned int ring_frame_size(struct ring *ring)
83 return ring->layout.tp_frame_size;
86 static inline void ring_verify_layout(struct ring *ring)
88 bug_on(ring->layout.tp_block_size < ring->layout.tp_frame_size);
89 bug_on((ring->layout.tp_block_size % ring->layout.tp_frame_size) != 0);
90 bug_on((ring->layout.tp_block_size % getpagesize()) != 0);
93 static inline void tpacket_hdr_clone(struct tpacket2_hdr *thdrd,
94 struct tpacket2_hdr *thdrs)
96 thdrd->tp_sec = thdrs->tp_sec;
97 thdrd->tp_nsec = thdrs->tp_nsec;
98 thdrd->tp_snaplen = thdrs->tp_snaplen;
99 thdrd->tp_len = thdrs->tp_len;
102 static inline void prepare_polling(int sock, struct pollfd *pfd)
104 memset(pfd, 0, sizeof(*pfd));
105 pfd->fd = sock;
106 pfd->revents = 0;
107 pfd->events = POLLIN | POLLRDNORM | POLLERR;
110 static inline void __set_sockopt_tpacket(int sock, int val)
112 int ret = setsockopt(sock, SOL_PACKET, PACKET_VERSION, &val, sizeof(val));
113 if (ret)
114 panic("Cannot set tpacketv2!\n");
117 static inline int __get_sockopt_tpacket(int sock)
119 int val, ret;
120 socklen_t len = sizeof(val);
122 ret = getsockopt(sock, SOL_PACKET, PACKET_VERSION, &val, &len);
123 if (ret)
124 panic("Cannot get tpacket version!\n");
126 return val;
129 static inline void set_sockopt_tpacket_v2(int sock)
131 __set_sockopt_tpacket(sock, TPACKET_V2);
134 static inline void set_sockopt_tpacket_v3(int sock)
136 __set_sockopt_tpacket(sock, TPACKET_V3);
139 static inline int get_sockopt_tpacket(int sock)
141 return __get_sockopt_tpacket(sock);
144 extern void mmap_ring_generic(int sock, struct ring *ring);
145 extern void alloc_ring_frames_generic(struct ring *ring, int num, size_t size);
146 extern void bind_ring_generic(int sock, struct ring *ring, int ifindex);
148 #endif /* RING_H */