1 #ifndef __PACKET_INTERNAL_H__
2 #define __PACKET_INTERNAL_H__
5 struct packet_mclist
*next
;
10 unsigned char addr
[MAX_ADDR_LEN
];
13 /* kbdq - kernel block descriptor queue */
14 struct tpacket_kbdq_core
{
16 unsigned int feature_req_word
;
18 unsigned char reset_pending_on_curr_blk
;
19 unsigned char delete_blk_timer
;
20 unsigned short kactive_blk_num
;
21 unsigned short blk_sizeof_priv
;
23 /* last_kactive_blk_num:
24 * trick to see if user-space has caught up
25 * in order to avoid refreshing timer when every single pkt arrives.
27 unsigned short last_kactive_blk_num
;
32 unsigned int max_frame_len
;
33 unsigned int knum_blocks
;
34 uint64_t knxt_seq_num
;
39 atomic_t blk_fill_in_prog
;
41 /* Default is set to 8ms */
42 #define DEFAULT_PRB_RETIRE_TOV (8)
44 unsigned short retire_blk_tov
;
45 unsigned short version
;
46 unsigned long tov_in_jiffies
;
48 /* timer to retire an outstanding block */
49 struct timer_list retire_blk_timer
;
56 struct packet_ring_buffer
{
60 unsigned int frames_per_block
;
61 unsigned int frame_size
;
62 unsigned int frame_max
;
64 unsigned int pg_vec_order
;
65 unsigned int pg_vec_pages
;
66 unsigned int pg_vec_len
;
68 unsigned int __percpu
*pending_refcnt
;
70 struct tpacket_kbdq_core prb_bdqc
;
73 extern struct mutex fanout_mutex
;
74 #define PACKET_FANOUT_MAX 256
76 struct packet_fanout
{
78 unsigned int num_members
;
84 struct bpf_prog __rcu
*bpf_prog
;
86 struct list_head list
;
87 struct sock
*arr
[PACKET_FANOUT_MAX
];
90 struct packet_type prot_hook ____cacheline_aligned_in_smp
;
93 struct packet_rollover
{
97 atomic_long_t num_huge
;
98 atomic_long_t num_failed
;
99 #define ROLLOVER_HLEN (L1_CACHE_BYTES / sizeof(u32))
100 u32 history
[ROLLOVER_HLEN
] ____cacheline_aligned
;
101 } ____cacheline_aligned_in_smp
;
104 /* struct sock has to be the first member of packet_sock */
106 struct packet_fanout
*fanout
;
107 union tpacket_stats_u stats
;
108 struct packet_ring_buffer rx_ring
;
109 struct packet_ring_buffer tx_ring
;
111 spinlock_t bind_lock
;
112 struct mutex pg_vec_lock
;
113 unsigned int running
:1, /* prot_hook is attached*/
118 int ifindex
; /* bound device */
120 struct packet_rollover
*rollover
;
121 struct packet_mclist
*mclist
;
123 enum tpacket_versions tp_version
;
124 unsigned int tp_hdrlen
;
125 unsigned int tp_reserve
;
126 unsigned int tp_loss
:1;
127 unsigned int tp_tx_has_off
:1;
128 unsigned int tp_tstamp
;
129 struct net_device __rcu
*cached_dev
;
130 int (*xmit
)(struct sk_buff
*skb
);
131 struct packet_type prot_hook ____cacheline_aligned_in_smp
;
134 static struct packet_sock
*pkt_sk(struct sock
*sk
)
136 return (struct packet_sock
*)sk
;