1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __PACKET_INTERNAL_H__
3 #define __PACKET_INTERNAL_H__
5 #include <linux/refcount.h>
8 struct packet_mclist *next;
13 unsigned char addr[MAX_ADDR_LEN];
16 /* kbdq - kernel block descriptor queue */
17 struct tpacket_kbdq_core {
19 unsigned int feature_req_word;
21 unsigned char reset_pending_on_curr_blk;
22 unsigned char delete_blk_timer;
23 unsigned short kactive_blk_num;
24 unsigned short blk_sizeof_priv;
26 /* last_kactive_blk_num:
27 * trick to see if user-space has caught up
28 * in order to avoid refreshing timer when every single pkt arrives.
30 unsigned short last_kactive_blk_num;
35 unsigned int max_frame_len;
36 unsigned int knum_blocks;
37 uint64_t knxt_seq_num;
42 rwlock_t blk_fill_in_prog_lock;
44 /* Default is set to 8ms */
45 #define DEFAULT_PRB_RETIRE_TOV (8)
47 unsigned short retire_blk_tov;
48 unsigned short version;
49 unsigned long tov_in_jiffies;
51 /* timer to retire an outstanding block */
52 struct timer_list retire_blk_timer;
59 struct packet_ring_buffer {
63 unsigned int frames_per_block;
64 unsigned int frame_size;
65 unsigned int frame_max;
67 unsigned int pg_vec_order;
68 unsigned int pg_vec_pages;
69 unsigned int pg_vec_len;
71 unsigned int __percpu *pending_refcnt;
74 unsigned long *rx_owner_map;
75 struct tpacket_kbdq_core prb_bdqc;
79 extern struct mutex fanout_mutex;
80 #define PACKET_FANOUT_MAX (1 << 16)
82 struct packet_fanout {
84 unsigned int num_members;
91 struct bpf_prog __rcu *bpf_prog;
93 struct list_head list;
96 struct packet_type prot_hook ____cacheline_aligned_in_smp;
97 struct sock __rcu *arr[] __counted_by(max_num_members);
100 struct packet_rollover {
103 atomic_long_t num_huge;
104 atomic_long_t num_failed;
105 #define ROLLOVER_HLEN (L1_CACHE_BYTES / sizeof(u32))
106 u32 history[ROLLOVER_HLEN] ____cacheline_aligned;
107 } ____cacheline_aligned_in_smp;
110 /* struct sock has to be the first member of packet_sock */
112 struct packet_fanout *fanout;
113 union tpacket_stats_u stats;
114 struct packet_ring_buffer rx_ring;
115 struct packet_ring_buffer tx_ring;
117 spinlock_t bind_lock;
118 struct mutex pg_vec_lock;
120 int ifindex; /* bound device */
123 struct packet_rollover *rollover;
124 struct packet_mclist *mclist;
126 enum tpacket_versions tp_version;
127 unsigned int tp_hdrlen;
128 unsigned int tp_reserve;
129 unsigned int tp_tstamp;
130 struct completion skb_completion;
131 struct net_device __rcu *cached_dev;
132 struct packet_type prot_hook ____cacheline_aligned_in_smp;
133 atomic_t tp_drops ____cacheline_aligned_in_smp;
136 #define pkt_sk(ptr) container_of_const(ptr, struct packet_sock, sk)
138 enum packet_sock_flags {
141 PACKET_SOCK_TX_HAS_OFF,
144 PACKET_SOCK_PRESSURE,
145 PACKET_SOCK_QDISC_BYPASS,
148 static inline void packet_sock_flag_set(struct packet_sock *po,
149 enum packet_sock_flags flag,
153 set_bit(flag, &po->flags);
155 clear_bit(flag, &po->flags);
158 static inline bool packet_sock_flag(const struct packet_sock *po,
159 enum packet_sock_flags flag)
161 return test_bit(flag, &po->flags);