2 * netsniff-ng - the packet sniffing beast
3 * Copyright 2009, 2010 Daniel Borkmann.
4 * Subject to the GPL, version 2.
11 * "I love the smell of 10GbE in the morning. Smells like ... victory."
12 * - W. Richard Stevens, "Secret Teachings of the UNIX Environment"
17 #include <linux/if_packet.h>
18 #include <linux/socket.h>
19 #include <linux/sockios.h>
20 #include <sys/ioctl.h>
30 # define POLLRDNORM 0x0040
34 struct tpacket_hdr
*h1
;
35 struct tpacket2_hdr
*h2
;
37 struct tpacket3_hdr
*h3
;
43 #define tpacket_uhdr(hdr, member, v3) \
44 ((v3) ? ((hdr).h3)->member : ((hdr).h2)->member)
46 #define tpacket_uhdr(hdr, member, v3) \
48 #endif /* HAVE_TPACKET3 */
51 struct tpacket2_hdr tp_h __aligned_tpacket
;
52 struct sockaddr_ll s_ll
__align_tpacket(sizeof(struct tpacket2_hdr
));
58 uint32_t offset_to_priv
;
59 struct tpacket_hdr_v1 h1
;
67 struct sockaddr_ll s_ll
;
69 struct tpacket_req layout
;
71 struct tpacket_req3 layout3
;
77 static inline void next_rnd_slot(unsigned int *it
, struct ring
*ring
)
79 *it
= rand() % ring
->layout
.tp_frame_nr
;
82 static inline size_t ring_size(const char *ifname
, size_t size
)
88 * Device bitrate in bytes times two as ring size.
89 * Fallback => ~ 64,00 MB
90 * 10 MBit => ~ 2,38 MB
91 * 54 MBit => ~ 12,88 MB
92 * 100 MBit => ~ 23,84 MB
93 * 300 MBit => ~ 71,52 MB
94 * 1.000 MBit => ~ 238,42 MB
95 * 10.000 MBit => ~ 2.384.18 MB
97 size
= device_bitrate(ifname
);
98 size
= (size
* 1000000) / 8;
103 return round_up_cacheline(size
);
106 static inline unsigned int ring_frame_size(struct ring
*ring
)
108 return ring
->layout
.tp_frame_size
;
111 static inline void ring_verify_layout(struct ring
*ring
)
113 bug_on(ring
->layout
.tp_block_size
< ring
->layout
.tp_frame_size
);
114 bug_on((ring
->layout
.tp_block_size
% ring
->layout
.tp_frame_size
) != 0);
115 bug_on((ring
->layout
.tp_block_size
% RUNTIME_PAGE_SIZE
) != 0);
118 static inline void tpacket_hdr_clone(struct tpacket2_hdr
*thdrd
,
119 struct tpacket2_hdr
*thdrs
)
121 thdrd
->tp_sec
= thdrs
->tp_sec
;
122 thdrd
->tp_nsec
= thdrs
->tp_nsec
;
123 thdrd
->tp_snaplen
= thdrs
->tp_snaplen
;
124 thdrd
->tp_len
= thdrs
->tp_len
;
127 static inline void prepare_polling(int sock
, struct pollfd
*pfd
)
129 memset(pfd
, 0, sizeof(*pfd
));
132 pfd
->events
= POLLIN
| POLLRDNORM
| POLLERR
;
135 static inline void __set_sockopt_tpacket(int sock
, int val
)
137 int ret
= setsockopt(sock
, SOL_PACKET
, PACKET_VERSION
, &val
, sizeof(val
));
139 panic("Cannot set tpacketv2!\n");
142 static inline void set_sockopt_tpacket_v2(int sock
)
144 __set_sockopt_tpacket(sock
, TPACKET_V2
);
148 static inline void set_sockopt_tpacket_v3(int sock
)
150 __set_sockopt_tpacket(sock
, TPACKET_V3
);
153 static inline void set_sockopt_tpacket_v3(int sock __maybe_unused
)
158 static inline int get_sockopt_tpacket(int sock
)
161 socklen_t len
= sizeof(val
);
163 ret
= getsockopt(sock
, SOL_PACKET
, PACKET_VERSION
, &val
, &len
);
165 panic("Cannot get tpacket version!\n");
170 extern void mmap_ring_generic(int sock
, struct ring
*ring
);
171 extern void alloc_ring_frames_generic(struct ring
*ring
, int num
, size_t size
);
172 extern void bind_ring_generic(int sock
, struct ring
*ring
, int ifindex
, bool tx_only
);