Blame view

include/net/act_api.h 5.89 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
4
  #ifndef __NET_ACT_API_H
  #define __NET_ACT_API_H
  
  /*
0b0f43fe2   Jamal Hadi Salim   net sched: indent...
5
6
   * Public action API for classifiers/qdiscs
  */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
7
8
9
  
  #include <net/sch_generic.h>
  #include <net/pkt_sched.h>
ddf97ccdd   WANG Cong   net_sched: add ne...
10
11
  #include <net/net_namespace.h>
  #include <net/netns/generic.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
12

a85a970af   WANG Cong   net_sched: move t...
13
14
15
16
17
18
19
20
21
22
23
24
  
  struct tcf_hashinfo {
  	struct hlist_head	*htab;
  	unsigned int		hmask;
  	spinlock_t		lock;
  	u32			index;
  };
  
  struct tc_action_ops;
  
  struct tc_action {
  	const struct tc_action_ops	*ops;
ec0595cc4   WANG Cong   net_sched: get ri...
25
26
27
28
  	__u32				type; /* for backward compat(TCA_OLD_COMPAT) */
  	__u32				order;
  	struct list_head		list;
  	struct tcf_hashinfo		*hinfo;
a85a970af   WANG Cong   net_sched: move t...
29

ec0595cc4   WANG Cong   net_sched: get ri...
30
31
32
33
34
35
36
37
38
39
40
41
  	struct hlist_node		tcfa_head;
  	u32				tcfa_index;
  	int				tcfa_refcnt;
  	int				tcfa_bindcnt;
  	u32				tcfa_capab;
  	int				tcfa_action;
  	struct tcf_t			tcfa_tm;
  	struct gnet_stats_basic_packed	tcfa_bstats;
  	struct gnet_stats_queue		tcfa_qstats;
  	struct gnet_stats_rate_est64	tcfa_rate_est;
  	spinlock_t			tcfa_lock;
  	struct rcu_head			tcfa_rcu;
519c818e8   Eric Dumazet   net: sched: add p...
42
43
  	struct gnet_stats_basic_cpu __percpu *cpu_bstats;
  	struct gnet_stats_queue __percpu *cpu_qstats;
e9ce1cd3c   David S. Miller   [PKT_SCHED]: Kill...
44
  };
ec0595cc4   WANG Cong   net_sched: get ri...
45
46
47
48
49
50
51
52
53
54
55
56
57
  #define tcf_act		common.tcfa_act
  #define tcf_head	common.tcfa_head
  #define tcf_index	common.tcfa_index
  #define tcf_refcnt	common.tcfa_refcnt
  #define tcf_bindcnt	common.tcfa_bindcnt
  #define tcf_capab	common.tcfa_capab
  #define tcf_action	common.tcfa_action
  #define tcf_tm		common.tcfa_tm
  #define tcf_bstats	common.tcfa_bstats
  #define tcf_qstats	common.tcfa_qstats
  #define tcf_rate_est	common.tcfa_rate_est
  #define tcf_lock	common.tcfa_lock
  #define tcf_rcu		common.tcfa_rcu
e9ce1cd3c   David S. Miller   [PKT_SCHED]: Kill...
58

e9ce1cd3c   David S. Miller   [PKT_SCHED]: Kill...
59
60
61
62
  static inline unsigned int tcf_hash(u32 index, unsigned int hmask)
  {
  	return index & hmask;
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
63

369ba5678   WANG Cong   net_sched: init s...
64
65
  static inline int tcf_hashinfo_init(struct tcf_hashinfo *hf, unsigned int mask)
  {
89819dc01   WANG Cong   net_sched: conver...
66
67
68
  	int i;
  
  	spin_lock_init(&hf->lock);
ddafd34f4   WANG Cong   net_sched: act: m...
69
  	hf->index = 0;
369ba5678   WANG Cong   net_sched: init s...
70
  	hf->hmask = mask;
89819dc01   WANG Cong   net_sched: conver...
71
  	hf->htab = kzalloc((mask + 1) * sizeof(struct hlist_head),
369ba5678   WANG Cong   net_sched: init s...
72
73
74
  			   GFP_KERNEL);
  	if (!hf->htab)
  		return -ENOMEM;
89819dc01   WANG Cong   net_sched: conver...
75
76
  	for (i = 0; i < mask + 1; i++)
  		INIT_HLIST_HEAD(&hf->htab[i]);
369ba5678   WANG Cong   net_sched: init s...
77
78
  	return 0;
  }
56e5d1ca1   Eric Dumazet   net_sched: act_ga...
79
80
81
82
83
84
85
86
87
  /* Update lastuse only if needed, to avoid dirtying a cache line.
   * We use a temp variable to avoid fetching jiffies twice.
   */
  static inline void tcf_lastuse_update(struct tcf_t *tm)
  {
  	unsigned long now = jiffies;
  
  	if (tm->lastuse != now)
  		tm->lastuse = now;
53eb440f4   Jamal Hadi Salim   net sched actions...
88
89
  	if (unlikely(!tm->firstuse))
  		tm->firstuse = now;
56e5d1ca1   Eric Dumazet   net_sched: act_ga...
90
  }
48d8ee169   Jamal Hadi Salim   net sched actions...
91
92
93
94
95
96
97
  static inline void tcf_tm_dump(struct tcf_t *dtm, const struct tcf_t *stm)
  {
  	dtm->install = jiffies_to_clock_t(jiffies - stm->install);
  	dtm->lastuse = jiffies_to_clock_t(jiffies - stm->lastuse);
  	dtm->firstuse = jiffies_to_clock_t(jiffies - stm->firstuse);
  	dtm->expires = jiffies_to_clock_t(stm->expires);
  }
00175aec9   Amir Vadai   net/sched: Macro ...
98
99
100
101
  #ifdef CONFIG_NET_CLS_ACT
  
  #define ACT_P_CREATED 1
  #define ACT_P_DELETED 1
e9ce1cd3c   David S. Miller   [PKT_SCHED]: Kill...
102
  struct tc_action_ops {
1f747c26c   WANG Cong   net_sched: conver...
103
  	struct list_head head;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
104
105
  	char    kind[IFNAMSIZ];
  	__u32   type; /* TBD to match kind */
a85a970af   WANG Cong   net_sched: move t...
106
  	size_t	size;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
107
  	struct module		*owner;
0b0f43fe2   Jamal Hadi Salim   net sched: indent...
108
109
  	int     (*act)(struct sk_buff *, const struct tc_action *,
  		       struct tcf_result *);
e9ce1cd3c   David S. Miller   [PKT_SCHED]: Kill...
110
  	int     (*dump)(struct sk_buff *, struct tc_action *, int, int);
a5b5c958f   WANG Cong   net_sched: act: r...
111
  	void	(*cleanup)(struct tc_action *, int bind);
a85a970af   WANG Cong   net_sched: move t...
112
  	int     (*lookup)(struct net *, struct tc_action **, u32);
c1b52739e   Benjamin LaHaise   pkt_sched: namesp...
113
  	int     (*init)(struct net *net, struct nlattr *nla,
a85a970af   WANG Cong   net_sched: move t...
114
  			struct nlattr *est, struct tc_action **act, int ovr,
c1b52739e   Benjamin LaHaise   pkt_sched: namesp...
115
  			int bind);
ddf97ccdd   WANG Cong   net_sched: add ne...
116
  	int     (*walk)(struct net *, struct sk_buff *,
a85a970af   WANG Cong   net_sched: move t...
117
  			struct netlink_callback *, int, const struct tc_action_ops *);
380407023   Amir Vadai   net/sched: Enable...
118
  	void	(*stats_update)(struct tc_action *, u64, u32, u64);
ddf97ccdd   WANG Cong   net_sched: add ne...
119
120
121
122
123
  };
  
  struct tc_action_net {
  	struct tcf_hashinfo *hinfo;
  	const struct tc_action_ops *ops;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
124
  };
ddf97ccdd   WANG Cong   net_sched: add ne...
125
  static inline
0b0f43fe2   Jamal Hadi Salim   net sched: indent...
126
127
  int tc_action_net_init(struct tc_action_net *tn,
  		       const struct tc_action_ops *ops, unsigned int mask)
ddf97ccdd   WANG Cong   net_sched: add ne...
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
  {
  	int err = 0;
  
  	tn->hinfo = kmalloc(sizeof(*tn->hinfo), GFP_KERNEL);
  	if (!tn->hinfo)
  		return -ENOMEM;
  	tn->ops = ops;
  	err = tcf_hashinfo_init(tn->hinfo, mask);
  	if (err)
  		kfree(tn->hinfo);
  	return err;
  }
  
  void tcf_hashinfo_destroy(const struct tc_action_ops *ops,
  			  struct tcf_hashinfo *hinfo);
  
  static inline void tc_action_net_exit(struct tc_action_net *tn)
  {
  	tcf_hashinfo_destroy(tn->ops, tn->hinfo);
18fcf49f8   WANG Cong   net_sched: fix a ...
147
  	kfree(tn->hinfo);
ddf97ccdd   WANG Cong   net_sched: add ne...
148
149
150
151
  }
  
  int tcf_generic_walker(struct tc_action_net *tn, struct sk_buff *skb,
  		       struct netlink_callback *cb, int type,
a85a970af   WANG Cong   net_sched: move t...
152
153
  		       const struct tc_action_ops *ops);
  int tcf_hash_search(struct tc_action_net *tn, struct tc_action **a, u32 index);
ddf97ccdd   WANG Cong   net_sched: add ne...
154
  u32 tcf_hash_new_index(struct tc_action_net *tn);
a85a970af   WANG Cong   net_sched: move t...
155
  bool tcf_hash_check(struct tc_action_net *tn, u32 index, struct tc_action **a,
b2313077e   WANG Cong   net_sched: make t...
156
  		    int bind);
ddf97ccdd   WANG Cong   net_sched: add ne...
157
  int tcf_hash_create(struct tc_action_net *tn, u32 index, struct nlattr *est,
a85a970af   WANG Cong   net_sched: move t...
158
159
  		    struct tc_action **a, const struct tc_action_ops *ops, int bind,
  		    bool cpustats);
86062033f   WANG Cong   net_sched: act: h...
160
  void tcf_hash_cleanup(struct tc_action *a, struct nlattr *est);
ddf97ccdd   WANG Cong   net_sched: add ne...
161
  void tcf_hash_insert(struct tc_action_net *tn, struct tc_action *a);
e9ce1cd3c   David S. Miller   [PKT_SCHED]: Kill...
162

28e6b67f0   Daniel Borkmann   net: sched: fix r...
163
164
165
166
167
168
  int __tcf_hash_release(struct tc_action *a, bool bind, bool strict);
  
  static inline int tcf_hash_release(struct tc_action *a, bool bind)
  {
  	return __tcf_hash_release(a, bind, false);
  }
ddf97ccdd   WANG Cong   net_sched: add ne...
169
  int tcf_register_action(struct tc_action_ops *a, struct pernet_operations *ops);
0b0f43fe2   Jamal Hadi Salim   net sched: indent...
170
171
  int tcf_unregister_action(struct tc_action_ops *a,
  			  struct pernet_operations *ops);
55334a5db   WANG Cong   net_sched: act: r...
172
  int tcf_action_destroy(struct list_head *actions, int bind);
22dc13c83   WANG Cong   net_sched: conver...
173
174
  int tcf_action_exec(struct sk_buff *skb, struct tc_action **actions,
  		    int nr_actions, struct tcf_result *res);
33be62715   WANG Cong   net_sched: act: u...
175
  int tcf_action_init(struct net *net, struct nlattr *nla,
5c15257f9   Joe Perches   net: Remove exter...
176
  				  struct nlattr *est, char *n, int ovr,
33be62715   WANG Cong   net_sched: act: u...
177
  				  int bind, struct list_head *);
5c15257f9   Joe Perches   net: Remove exter...
178
179
180
  struct tc_action *tcf_action_init_1(struct net *net, struct nlattr *nla,
  				    struct nlattr *est, char *n, int ovr,
  				    int bind);
33be62715   WANG Cong   net_sched: act: u...
181
  int tcf_action_dump(struct sk_buff *skb, struct list_head *, int, int);
5c15257f9   Joe Perches   net: Remove exter...
182
183
184
  int tcf_action_dump_old(struct sk_buff *skb, struct tc_action *a, int, int);
  int tcf_action_dump_1(struct sk_buff *skb, struct tc_action *a, int, int);
  int tcf_action_copy_stats(struct sk_buff *, struct tc_action *, int);
00175aec9   Amir Vadai   net/sched: Macro ...
185

2734437ef   WANG Cong   net_sched: move t...
186
  #endif /* CONFIG_NET_CLS_ACT */
86cb13e4e   Ido Schimmel   mlxsw: spectrum: ...
187

380407023   Amir Vadai   net/sched: Enable...
188
189
190
  static inline void tcf_action_stats_update(struct tc_action *a, u64 bytes,
  					   u64 packets, u64 lastuse)
  {
2734437ef   WANG Cong   net_sched: move t...
191
  #ifdef CONFIG_NET_CLS_ACT
380407023   Amir Vadai   net/sched: Enable...
192
193
194
195
  	if (!a->ops->stats_update)
  		return;
  
  	a->ops->stats_update(a, bytes, packets, lastuse);
2734437ef   WANG Cong   net_sched: move t...
196
  #endif
380407023   Amir Vadai   net/sched: Enable...
197
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
198
  #endif