Blame view

include/linux/netfilter.h 12.2 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
  #ifndef __LINUX_NETFILTER_H
  #define __LINUX_NETFILTER_H
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3
  #include <linux/init.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
4
5
6
  #include <linux/skbuff.h>
  #include <linux/net.h>
  #include <linux/if.h>
2e3075a2c   Jan Engelhardt   [NETFILTER]: Exte...
7
8
  #include <linux/in.h>
  #include <linux/in6.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
9
10
  #include <linux/wait.h>
  #include <linux/list.h>
d1c85c2eb   Zhouyi Zhou   netfilter: HAVE_J...
11
  #include <linux/static_key.h>
a263653ed   Pablo Neira Ayuso   netfilter: don't ...
12
  #include <linux/netfilter_defs.h>
085db2c04   Eric W. Biederman   netfilter: Per ne...
13
14
  #include <linux/netdevice.h>
  #include <net/net_namespace.h>
a263653ed   Pablo Neira Ayuso   netfilter: don't ...
15

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
16
  #ifdef CONFIG_NETFILTER
f615df76e   Florian Westphal   netfilter: reduce...
17
18
19
20
  static inline int NF_DROP_GETERR(int verdict)
  {
  	return -(verdict >> NF_VERDICT_QBITS);
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
21

b8beedd25   Patrick McHardy   [NETFILTER]: Add ...
22
23
24
25
26
27
28
29
  static inline int nf_inet_addr_cmp(const union nf_inet_addr *a1,
  				   const union nf_inet_addr *a2)
  {
  	return a1->all[0] == a2->all[0] &&
  	       a1->all[1] == a2->all[1] &&
  	       a1->all[2] == a2->all[2] &&
  	       a1->all[3] == a2->all[3];
  }
efdedd542   Denys Fedoryshchenko   netfilter: xt_rec...
30
31
32
33
34
35
36
37
38
  static inline void nf_inet_addr_mask(const union nf_inet_addr *a1,
  				     union nf_inet_addr *result,
  				     const union nf_inet_addr *mask)
  {
  	result->all[0] = a1->all[0] & mask->all[0];
  	result->all[1] = a1->all[1] & mask->all[1];
  	result->all[2] = a1->all[2] & mask->all[2];
  	result->all[3] = a1->all[3] & mask->all[3];
  }
a0f4ecf34   Joe Perches   netfilter: Remove...
39
  int netfilter_init(void);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
40

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
41
  struct sk_buff;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
42

795aa6ef6   Patrick McHardy   netfilter: pass h...
43
  struct nf_hook_ops;
cfdfab314   David S. Miller   netfilter: Create...
44

1c984f8a5   David Miller   netfilter: Add so...
45
  struct sock;
cfdfab314   David S. Miller   netfilter: Create...
46
47
48
49
50
51
  struct nf_hook_state {
  	unsigned int hook;
  	int thresh;
  	u_int8_t pf;
  	struct net_device *in;
  	struct net_device *out;
1c984f8a5   David Miller   netfilter: Add so...
52
  	struct sock *sk;
b11b1f652   Eric W. Biederman   netfilter: Store ...
53
  	struct net *net;
f71914834   Pablo Neira   netfilter: add ho...
54
  	struct list_head *hook_list;
0c4b51f00   Eric W. Biederman   netfilter: Pass n...
55
  	int (*okfn)(struct net *, struct sock *, struct sk_buff *);
cfdfab314   David S. Miller   netfilter: Create...
56
  };
107a9f4dc   David Miller   netfilter: Add nf...
57
  static inline void nf_hook_state_init(struct nf_hook_state *p,
f71914834   Pablo Neira   netfilter: add ho...
58
  				      struct list_head *hook_list,
107a9f4dc   David Miller   netfilter: Add nf...
59
60
61
62
  				      unsigned int hook,
  				      int thresh, u_int8_t pf,
  				      struct net_device *indev,
  				      struct net_device *outdev,
1c984f8a5   David Miller   netfilter: Add so...
63
  				      struct sock *sk,
b11b1f652   Eric W. Biederman   netfilter: Store ...
64
  				      struct net *net,
0c4b51f00   Eric W. Biederman   netfilter: Pass n...
65
  				      int (*okfn)(struct net *, struct sock *, struct sk_buff *))
107a9f4dc   David Miller   netfilter: Add nf...
66
67
68
69
70
71
  {
  	p->hook = hook;
  	p->thresh = thresh;
  	p->pf = pf;
  	p->in = indev;
  	p->out = outdev;
1c984f8a5   David Miller   netfilter: Add so...
72
  	p->sk = sk;
b11b1f652   Eric W. Biederman   netfilter: Store ...
73
  	p->net = net;
f71914834   Pablo Neira   netfilter: add ho...
74
  	p->hook_list = hook_list;
107a9f4dc   David Miller   netfilter: Add nf...
75
76
  	p->okfn = okfn;
  }
06198b34a   Eric W. Biederman   netfilter: Pass p...
77
  typedef unsigned int nf_hookfn(void *priv,
3db05fea5   Herbert Xu   [NETFILTER]: Repl...
78
  			       struct sk_buff *skb,
238e54c9c   David S. Miller   netfilter: Make n...
79
  			       const struct nf_hook_state *state);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
80

d94d9fee9   Eric Dumazet   net: cleanup incl...
81
  struct nf_hook_ops {
87d5c18ce   Pablo Neira   netfilter: cleanu...
82
  	struct list_head 	list;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
83
84
  
  	/* User fills in from here down. */
87d5c18ce   Pablo Neira   netfilter: cleanu...
85
  	nf_hookfn		*hook;
e687ad60a   Pablo Neira   netfilter: add ne...
86
  	struct net_device	*dev;
87d5c18ce   Pablo Neira   netfilter: cleanu...
87
88
89
  	void			*priv;
  	u_int8_t		pf;
  	unsigned int		hooknum;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
90
  	/* Hooks are ordered in ascending priority. */
87d5c18ce   Pablo Neira   netfilter: cleanu...
91
  	int			priority;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
92
  };
d94d9fee9   Eric Dumazet   net: cleanup incl...
93
  struct nf_sockopt_ops {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
94
  	struct list_head list;
76108cea0   Jan Engelhardt   netfilter: Use un...
95
  	u_int8_t pf;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
96
97
98
99
100
  
  	/* Non-inclusive ranges: use 0/0/NULL to never get called. */
  	int set_optmin;
  	int set_optmax;
  	int (*set)(struct sock *sk, int optval, void __user *user, unsigned int len);
c30f540b6   Alexey Dobriyan   netfilter: xtable...
101
  #ifdef CONFIG_COMPAT
3fdadf7d2   Dmitry Mishin   [NET]: {get|set}s...
102
103
  	int (*compat_set)(struct sock *sk, int optval,
  			void __user *user, unsigned int len);
c30f540b6   Alexey Dobriyan   netfilter: xtable...
104
  #endif
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
105
106
107
  	int get_optmin;
  	int get_optmax;
  	int (*get)(struct sock *sk, int optval, void __user *user, int *len);
c30f540b6   Alexey Dobriyan   netfilter: xtable...
108
  #ifdef CONFIG_COMPAT
3fdadf7d2   Dmitry Mishin   [NET]: {get|set}s...
109
110
  	int (*compat_get)(struct sock *sk, int optval,
  			void __user *user, int *len);
c30f540b6   Alexey Dobriyan   netfilter: xtable...
111
  #endif
16fcec35e   Neil Horman   [NETFILTER]: Fix/...
112
113
  	/* Use the module struct to lock set/get code in place */
  	struct module *owner;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
114
  };
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
115
  /* Function to register/unregister hook points. */
085db2c04   Eric W. Biederman   netfilter: Per ne...
116
117
118
119
120
121
  int nf_register_net_hook(struct net *net, const struct nf_hook_ops *ops);
  void nf_unregister_net_hook(struct net *net, const struct nf_hook_ops *ops);
  int nf_register_net_hooks(struct net *net, const struct nf_hook_ops *reg,
  			  unsigned int n);
  void nf_unregister_net_hooks(struct net *net, const struct nf_hook_ops *reg,
  			     unsigned int n);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
122
123
  int nf_register_hook(struct nf_hook_ops *reg);
  void nf_unregister_hook(struct nf_hook_ops *reg);
972d1cb14   Patrick McHardy   [NETFILTER]: Add ...
124
125
  int nf_register_hooks(struct nf_hook_ops *reg, unsigned int n);
  void nf_unregister_hooks(struct nf_hook_ops *reg, unsigned int n);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
126
127
128
129
130
  
  /* Functions to register get/setsockopt ranges (non-inclusive).  You
     need to check permissions yourself! */
  int nf_register_sockopt(struct nf_sockopt_ops *reg);
  void nf_unregister_sockopt(struct nf_sockopt_ops *reg);
d1c85c2eb   Zhouyi Zhou   netfilter: HAVE_J...
131
  #ifdef HAVE_JUMP_LABEL
c5905afb0   Ingo Molnar   static keys: Intr...
132
  extern struct static_key nf_hooks_needed[NFPROTO_NUMPROTO][NF_MAX_HOOKS];
d1c85c2eb   Zhouyi Zhou   netfilter: HAVE_J...
133

3bbd14e0a   Pablo Neira Ayuso   netfilter: rename...
134
  static inline bool nf_hook_list_active(struct list_head *hook_list,
b8d0aad0c   Pablo Neira   netfilter: add nf...
135
  				       u_int8_t pf, unsigned int hook)
a2d7ec58a   Eric Dumazet   netfilter: use ju...
136
137
138
  {
  	if (__builtin_constant_p(pf) &&
  	    __builtin_constant_p(hook))
c5905afb0   Ingo Molnar   static keys: Intr...
139
  		return static_key_false(&nf_hooks_needed[pf][hook]);
a2d7ec58a   Eric Dumazet   netfilter: use ju...
140

3bbd14e0a   Pablo Neira Ayuso   netfilter: rename...
141
  	return !list_empty(hook_list);
a2d7ec58a   Eric Dumazet   netfilter: use ju...
142
143
  }
  #else
3bbd14e0a   Pablo Neira Ayuso   netfilter: rename...
144
  static inline bool nf_hook_list_active(struct list_head *hook_list,
b8d0aad0c   Pablo Neira   netfilter: add nf...
145
  				       u_int8_t pf, unsigned int hook)
a2d7ec58a   Eric Dumazet   netfilter: use ju...
146
  {
3bbd14e0a   Pablo Neira Ayuso   netfilter: rename...
147
  	return !list_empty(hook_list);
a2d7ec58a   Eric Dumazet   netfilter: use ju...
148
149
  }
  #endif
cfdfab314   David S. Miller   netfilter: Create...
150
  int nf_hook_slow(struct sk_buff *skb, struct nf_hook_state *state);
16a6677fd   Patrick McHardy   [XFRM]: Netfilter...
151
152
153
  
  /**
   *	nf_hook_thresh - call a netfilter hook
b8d0aad0c   Pablo Neira   netfilter: add nf...
154
   *
16a6677fd   Patrick McHardy   [XFRM]: Netfilter...
155
156
157
158
   *	Returns 1 if the hook has allowed the packet to pass.  The function
   *	okfn must be invoked by the caller in this case.  Any other return
   *	value indicates the packet has been consumed by the hook.
   */
76108cea0   Jan Engelhardt   netfilter: Use un...
159
  static inline int nf_hook_thresh(u_int8_t pf, unsigned int hook,
7a7735044   Eric W. Biederman   netfilter: Pass n...
160
  				 struct net *net,
7026b1ddb   David Miller   netfilter: Pass s...
161
  				 struct sock *sk,
3db05fea5   Herbert Xu   [NETFILTER]: Repl...
162
  				 struct sk_buff *skb,
16a6677fd   Patrick McHardy   [XFRM]: Netfilter...
163
164
  				 struct net_device *indev,
  				 struct net_device *outdev,
0c4b51f00   Eric W. Biederman   netfilter: Pass n...
165
  				 int (*okfn)(struct net *, struct sock *, struct sk_buff *),
7026b1ddb   David Miller   netfilter: Pass s...
166
  				 int thresh)
16a6677fd   Patrick McHardy   [XFRM]: Netfilter...
167
  {
3bbd14e0a   Pablo Neira Ayuso   netfilter: rename...
168
  	struct list_head *hook_list = &net->nf.hooks[pf][hook];
70aa99660   Eric W. Biederman   netfilter: kill n...
169

3bbd14e0a   Pablo Neira Ayuso   netfilter: rename...
170
  	if (nf_hook_list_active(hook_list, pf, hook)) {
107a9f4dc   David Miller   netfilter: Add nf...
171
  		struct nf_hook_state state;
cfdfab314   David S. Miller   netfilter: Create...
172

3bbd14e0a   Pablo Neira Ayuso   netfilter: rename...
173
  		nf_hook_state_init(&state, hook_list, hook, thresh,
b11b1f652   Eric W. Biederman   netfilter: Store ...
174
  				   pf, indev, outdev, sk, net, okfn);
cfdfab314   David S. Miller   netfilter: Create...
175
176
  		return nf_hook_slow(skb, &state);
  	}
a2d7ec58a   Eric Dumazet   netfilter: use ju...
177
  	return 1;
16a6677fd   Patrick McHardy   [XFRM]: Netfilter...
178
  }
29a26a568   Eric W. Biederman   netfilter: Pass s...
179
180
181
  static inline int nf_hook(u_int8_t pf, unsigned int hook, struct net *net,
  			  struct sock *sk, struct sk_buff *skb,
  			  struct net_device *indev, struct net_device *outdev,
0c4b51f00   Eric W. Biederman   netfilter: Pass n...
182
  			  int (*okfn)(struct net *, struct sock *, struct sk_buff *))
16a6677fd   Patrick McHardy   [XFRM]: Netfilter...
183
  {
7a7735044   Eric W. Biederman   netfilter: Pass n...
184
  	return nf_hook_thresh(pf, hook, net, sk, skb, indev, outdev, okfn, INT_MIN);
16a6677fd   Patrick McHardy   [XFRM]: Netfilter...
185
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
                     
  /* Activate hook; either okfn or kfree_skb called, unless a hook
     returns NF_STOLEN (in which case, it's up to the hook to deal with
     the consequences).
  
     Returns -ERRNO if packet dropped.  Zero means queued, stolen or
     accepted.
  */
  
  /* RR:
     > I don't want nf_hook to return anything because people might forget
     > about async and trust the return value to mean "packet was ok".
  
     AK:
     Just document it clearly, then you can expect some sense from kernel
     coders :)
  */
2249065f4   Jan Engelhardt   netfilter: get ri...
203
  static inline int
29a26a568   Eric W. Biederman   netfilter: Pass s...
204
  NF_HOOK_THRESH(uint8_t pf, unsigned int hook, struct net *net, struct sock *sk,
7026b1ddb   David Miller   netfilter: Pass s...
205
206
  	       struct sk_buff *skb, struct net_device *in,
  	       struct net_device *out,
0c4b51f00   Eric W. Biederman   netfilter: Pass n...
207
208
  	       int (*okfn)(struct net *, struct sock *, struct sk_buff *),
  	       int thresh)
2249065f4   Jan Engelhardt   netfilter: get ri...
209
  {
7a7735044   Eric W. Biederman   netfilter: Pass n...
210
  	int ret = nf_hook_thresh(pf, hook, net, sk, skb, in, out, okfn, thresh);
2249065f4   Jan Engelhardt   netfilter: get ri...
211
  	if (ret == 1)
0c4b51f00   Eric W. Biederman   netfilter: Pass n...
212
  		ret = okfn(net, sk, skb);
2249065f4   Jan Engelhardt   netfilter: get ri...
213
214
  	return ret;
  }
48d5cad87   Patrick McHardy   [XFRM]: Fix SNAT-...
215

2249065f4   Jan Engelhardt   netfilter: get ri...
216
  static inline int
29a26a568   Eric W. Biederman   netfilter: Pass s...
217
  NF_HOOK_COND(uint8_t pf, unsigned int hook, struct net *net, struct sock *sk,
7026b1ddb   David Miller   netfilter: Pass s...
218
  	     struct sk_buff *skb, struct net_device *in, struct net_device *out,
0c4b51f00   Eric W. Biederman   netfilter: Pass n...
219
220
  	     int (*okfn)(struct net *, struct sock *, struct sk_buff *),
  	     bool cond)
2249065f4   Jan Engelhardt   netfilter: get ri...
221
  {
4bac6b180   Patrick McHardy   netfilter: restor...
222
223
224
  	int ret;
  
  	if (!cond ||
7a7735044   Eric W. Biederman   netfilter: Pass n...
225
  	    ((ret = nf_hook_thresh(pf, hook, net, sk, skb, in, out, okfn, INT_MIN)) == 1))
0c4b51f00   Eric W. Biederman   netfilter: Pass n...
226
  		ret = okfn(net, sk, skb);
2249065f4   Jan Engelhardt   netfilter: get ri...
227
228
  	return ret;
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
229

2249065f4   Jan Engelhardt   netfilter: get ri...
230
  static inline int
29a26a568   Eric W. Biederman   netfilter: Pass s...
231
  NF_HOOK(uint8_t pf, unsigned int hook, struct net *net, struct sock *sk, struct sk_buff *skb,
2249065f4   Jan Engelhardt   netfilter: get ri...
232
  	struct net_device *in, struct net_device *out,
0c4b51f00   Eric W. Biederman   netfilter: Pass n...
233
  	int (*okfn)(struct net *, struct sock *, struct sk_buff *))
2249065f4   Jan Engelhardt   netfilter: get ri...
234
  {
29a26a568   Eric W. Biederman   netfilter: Pass s...
235
  	return NF_HOOK_THRESH(pf, hook, net, sk, skb, in, out, okfn, INT_MIN);
2249065f4   Jan Engelhardt   netfilter: get ri...
236
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
237
238
  
  /* Call setsockopt() */
76108cea0   Jan Engelhardt   netfilter: Use un...
239
  int nf_setsockopt(struct sock *sk, u_int8_t pf, int optval, char __user *opt,
b7058842c   David S. Miller   net: Make setsock...
240
  		  unsigned int len);
76108cea0   Jan Engelhardt   netfilter: Use un...
241
  int nf_getsockopt(struct sock *sk, u_int8_t pf, int optval, char __user *opt,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
242
  		  int *len);
c30f540b6   Alexey Dobriyan   netfilter: xtable...
243
  #ifdef CONFIG_COMPAT
76108cea0   Jan Engelhardt   netfilter: Use un...
244
  int compat_nf_setsockopt(struct sock *sk, u_int8_t pf, int optval,
b7058842c   David S. Miller   net: Make setsock...
245
  		char __user *opt, unsigned int len);
76108cea0   Jan Engelhardt   netfilter: Use un...
246
  int compat_nf_getsockopt(struct sock *sk, u_int8_t pf, int optval,
3fdadf7d2   Dmitry Mishin   [NET]: {get|set}s...
247
  		char __user *opt, int *len);
c30f540b6   Alexey Dobriyan   netfilter: xtable...
248
  #endif
3fdadf7d2   Dmitry Mishin   [NET]: {get|set}s...
249

089af26c7   Harald Welte   [NETFILTER]: Rena...
250
251
252
  /* Call this before modifying an existing packet: ensures it is
     modifiable and linear to the point you care about (writable_len).
     Returns true or false. */
a0f4ecf34   Joe Perches   netfilter: Remove...
253
  int skb_make_writable(struct sk_buff *skb, unsigned int writable_len);
089af26c7   Harald Welte   [NETFILTER]: Rena...
254

1841a4c7a   Patrick McHardy   [NETFILTER]: nf_c...
255
  struct flowi;
02f014d88   Patrick McHardy   [NETFILTER]: nf_q...
256
  struct nf_queue_entry;
c01cd429f   Patrick McHardy   [NETFILTER]: nf_q...
257

bce8032ef   Patrick McHardy   [NETFILTER]: Intr...
258
259
  struct nf_afinfo {
  	unsigned short	family;
b51655b95   Al Viro   [NET]: Annotate _...
260
  	__sum16		(*checksum)(struct sk_buff *skb, unsigned int hook,
422c346fa   Patrick McHardy   [NETFILTER]: Add ...
261
  				    unsigned int dataoff, u_int8_t protocol);
d63a65073   Patrick McHardy   [NETFILTER]: Add ...
262
263
264
265
266
  	__sum16		(*checksum_partial)(struct sk_buff *skb,
  					    unsigned int hook,
  					    unsigned int dataoff,
  					    unsigned int len,
  					    u_int8_t protocol);
31ad3dd64   Florian Westphal   netfilter: af_inf...
267
  	int		(*route)(struct net *net, struct dst_entry **dst,
0fae2e774   Florian Westphal   netfilter: af_inf...
268
  				 struct flowi *fl, bool strict);
bce8032ef   Patrick McHardy   [NETFILTER]: Intr...
269
  	void		(*saveroute)(const struct sk_buff *skb,
02f014d88   Patrick McHardy   [NETFILTER]: nf_q...
270
  				     struct nf_queue_entry *entry);
d815d90bb   Eric W. Biederman   netfilter: Push s...
271
  	int		(*reroute)(struct net *net, struct sk_buff *skb,
02f014d88   Patrick McHardy   [NETFILTER]: nf_q...
272
  				   const struct nf_queue_entry *entry);
bce8032ef   Patrick McHardy   [NETFILTER]: Intr...
273
  	int		route_key_size;
2cc7d5730   Harald Welte   [NETFILTER]: Move...
274
  };
0e60ebe04   Eric Dumazet   netfilter: add __...
275
  extern const struct nf_afinfo __rcu *nf_afinfo[NFPROTO_NUMPROTO];
1e796fda0   Patrick McHardy   [NETFILTER]: cons...
276
  static inline const struct nf_afinfo *nf_get_afinfo(unsigned short family)
bce8032ef   Patrick McHardy   [NETFILTER]: Intr...
277
278
279
  {
  	return rcu_dereference(nf_afinfo[family]);
  }
2cc7d5730   Harald Welte   [NETFILTER]: Move...
280

b51655b95   Al Viro   [NET]: Annotate _...
281
  static inline __sum16
422c346fa   Patrick McHardy   [NETFILTER]: Add ...
282
283
284
  nf_checksum(struct sk_buff *skb, unsigned int hook, unsigned int dataoff,
  	    u_int8_t protocol, unsigned short family)
  {
1e796fda0   Patrick McHardy   [NETFILTER]: cons...
285
  	const struct nf_afinfo *afinfo;
b51655b95   Al Viro   [NET]: Annotate _...
286
  	__sum16 csum = 0;
422c346fa   Patrick McHardy   [NETFILTER]: Add ...
287
288
289
290
291
292
293
294
  
  	rcu_read_lock();
  	afinfo = nf_get_afinfo(family);
  	if (afinfo)
  		csum = afinfo->checksum(skb, hook, dataoff, protocol);
  	rcu_read_unlock();
  	return csum;
  }
d63a65073   Patrick McHardy   [NETFILTER]: Add ...
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
  static inline __sum16
  nf_checksum_partial(struct sk_buff *skb, unsigned int hook,
  		    unsigned int dataoff, unsigned int len,
  		    u_int8_t protocol, unsigned short family)
  {
  	const struct nf_afinfo *afinfo;
  	__sum16 csum = 0;
  
  	rcu_read_lock();
  	afinfo = nf_get_afinfo(family);
  	if (afinfo)
  		csum = afinfo->checksum_partial(skb, hook, dataoff, len,
  						protocol);
  	rcu_read_unlock();
  	return csum;
  }
a0f4ecf34   Joe Perches   netfilter: Remove...
311
312
  int nf_register_afinfo(const struct nf_afinfo *afinfo);
  void nf_unregister_afinfo(const struct nf_afinfo *afinfo);
bce8032ef   Patrick McHardy   [NETFILTER]: Intr...
313

eb9c7ebe6   Patrick McHardy   [NETFILTER]: Hand...
314
  #include <net/flow.h>
c7232c997   Patrick McHardy   netfilter: add pr...
315
  extern void (*nf_nat_decode_session_hook)(struct sk_buff *, struct flowi *);
eb9c7ebe6   Patrick McHardy   [NETFILTER]: Hand...
316
317
  
  static inline void
76108cea0   Jan Engelhardt   netfilter: Use un...
318
  nf_nat_decode_session(struct sk_buff *skb, struct flowi *fl, u_int8_t family)
eb9c7ebe6   Patrick McHardy   [NETFILTER]: Hand...
319
  {
051578ccb   Patrick McHardy   [NETFILTER]: nf_n...
320
  #ifdef CONFIG_NF_NAT_NEEDED
eb9c7ebe6   Patrick McHardy   [NETFILTER]: Hand...
321
  	void (*decodefn)(struct sk_buff *, struct flowi *);
c7232c997   Patrick McHardy   netfilter: add pr...
322
323
324
325
326
  	rcu_read_lock();
  	decodefn = rcu_dereference(nf_nat_decode_session_hook);
  	if (decodefn)
  		decodefn(skb, fl);
  	rcu_read_unlock();
eb9c7ebe6   Patrick McHardy   [NETFILTER]: Hand...
327
328
  #endif
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
329
  #else /* !CONFIG_NETFILTER */
008027c31   Arnd Bergmann   netfilter: turn N...
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
  static inline int
  NF_HOOK_COND(uint8_t pf, unsigned int hook, struct net *net, struct sock *sk,
  	     struct sk_buff *skb, struct net_device *in, struct net_device *out,
  	     int (*okfn)(struct net *, struct sock *, struct sk_buff *),
  	     bool cond)
  {
  	return okfn(net, sk, skb);
  }
  
  static inline int
  NF_HOOK(uint8_t pf, unsigned int hook, struct net *net, struct sock *sk,
  	struct sk_buff *skb, struct net_device *in, struct net_device *out,
  	int (*okfn)(struct net *, struct sock *, struct sk_buff *))
  {
  	return okfn(net, sk, skb);
  }
29a26a568   Eric W. Biederman   netfilter: Pass s...
346
347
348
  static inline int nf_hook(u_int8_t pf, unsigned int hook, struct net *net,
  			  struct sock *sk, struct sk_buff *skb,
  			  struct net_device *indev, struct net_device *outdev,
0c4b51f00   Eric W. Biederman   netfilter: Pass n...
349
  			  int (*okfn)(struct net *, struct sock *, struct sk_buff *))
f53b61d8c   David S. Miller   [NETFILTER]: Add ...
350
  {
9c92d3486   Patrick McHardy   [NETFILTER]: Don'...
351
  	return 1;
f53b61d8c   David S. Miller   [NETFILTER]: Add ...
352
  }
f53b61d8c   David S. Miller   [NETFILTER]: Add ...
353
  struct flowi;
eb9c7ebe6   Patrick McHardy   [NETFILTER]: Hand...
354
  static inline void
76108cea0   Jan Engelhardt   netfilter: Use un...
355
356
357
  nf_nat_decode_session(struct sk_buff *skb, struct flowi *fl, u_int8_t family)
  {
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
358
  #endif /*CONFIG_NETFILTER*/
5f79e0f91   Yasuyuki Kozakai   [NETFILTER]: nf_c...
359
  #if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
62da98656   Daniel Borkmann   netfilter: nf_con...
360
  #include <linux/netfilter/nf_conntrack_zones_common.h>
312a0c16c   Patrick McHardy   netfilter: nf_con...
361
  extern void (*ip_ct_attach)(struct sk_buff *, const struct sk_buff *) __rcu;
a0f4ecf34   Joe Perches   netfilter: Remove...
362
  void nf_ct_attach(struct sk_buff *, const struct sk_buff *);
0e60ebe04   Eric Dumazet   netfilter: add __...
363
  extern void (*nf_ct_destroy)(struct nf_conntrack *) __rcu;
b7bd1809e   Pablo Neira Ayuso   netfilter: nfnetl...
364
365
366
  #else
  static inline void nf_ct_attach(struct sk_buff *new, struct sk_buff *skb) {}
  #endif
9cb017665   Pablo Neira Ayuso   netfilter: add gl...
367
368
  
  struct nf_conn;
41d73ec05   Patrick McHardy   netfilter: nf_con...
369
  enum ip_conntrack_info;
9cb017665   Pablo Neira Ayuso   netfilter: add gl...
370
  struct nlattr;
a4b4766c3   Ken-ichirou MATSUZAWA   netfilter: nfnetl...
371
  struct nfnl_ct_hook {
224a05975   Ken-ichirou MATSUZAWA   netfilter: ctnetl...
372
  	struct nf_conn *(*get_ct)(const struct sk_buff *skb,
b7bd1809e   Pablo Neira Ayuso   netfilter: nfnetl...
373
  				  enum ip_conntrack_info *ctinfo);
9cb017665   Pablo Neira Ayuso   netfilter: add gl...
374
  	size_t (*build_size)(const struct nf_conn *ct);
b7bd1809e   Pablo Neira Ayuso   netfilter: nfnetl...
375
376
377
  	int (*build)(struct sk_buff *skb, struct nf_conn *ct,
  		     enum ip_conntrack_info ctinfo,
  		     u_int16_t ct_attr, u_int16_t ct_info_attr);
9cb017665   Pablo Neira Ayuso   netfilter: add gl...
378
  	int (*parse)(const struct nlattr *attr, struct nf_conn *ct);
bd0779370   Pablo Neira Ayuso   netfilter: nfnetl...
379
380
  	int (*attach_expect)(const struct nlattr *attr, struct nf_conn *ct,
  			     u32 portid, u32 report);
8c88f87cb   Pablo Neira Ayuso   netfilter: nfnetl...
381
  	void (*seq_adjust)(struct sk_buff *skb, struct nf_conn *ct,
41d73ec05   Patrick McHardy   netfilter: nf_con...
382
  			   enum ip_conntrack_info ctinfo, s32 off);
9cb017665   Pablo Neira Ayuso   netfilter: add gl...
383
  };
a4b4766c3   Ken-ichirou MATSUZAWA   netfilter: nfnetl...
384
  extern struct nfnl_ct_hook __rcu *nfnl_ct_hook;
5f79e0f91   Yasuyuki Kozakai   [NETFILTER]: nf_c...
385

e7c8899f3   Florian Westphal   netfilter: move t...
386
387
388
389
390
391
392
393
394
395
  /**
   * nf_skb_duplicated - TEE target has sent a packet
   *
   * When a xtables target sends a packet, the OUTPUT and POSTROUTING
   * hooks are traversed again, i.e. nft and xtables are invoked recursively.
   *
   * This is used by xtables TEE target to prevent the duplicated skb from
   * being duplicated again.
   */
  DECLARE_PER_CPU(bool, nf_skb_duplicated);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
396
  #endif /*__LINUX_NETFILTER_H*/