netfilter.h 11.8 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7
#ifndef __LINUX_NETFILTER_H
#define __LINUX_NETFILTER_H

#include <linux/init.h>
#include <linux/skbuff.h>
#include <linux/net.h>
#include <linux/if.h>
8 9
#include <linux/in.h>
#include <linux/in6.h>
L
Linus Torvalds 已提交
10 11
#include <linux/wait.h>
#include <linux/list.h>
12
#include <linux/static_key.h>
13
#include <linux/netfilter_defs.h>
14 15
#include <linux/netdevice.h>
#include <net/net_namespace.h>
16

L
Linus Torvalds 已提交
17
#ifdef CONFIG_NETFILTER
18 19 20 21
static inline int NF_DROP_GETERR(int verdict)
{
	return -(verdict >> NF_VERDICT_QBITS);
}
L
Linus Torvalds 已提交
22

23 24 25 26 27 28 29 30 31
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];
}

32 33 34 35 36 37 38 39 40 41
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];
}

42
int netfilter_init(void);
L
Linus Torvalds 已提交
43 44 45

struct sk_buff;

46
struct nf_hook_ops;
47

48 49
struct sock;

50 51 52 53 54 55
struct nf_hook_state {
	unsigned int hook;
	int thresh;
	u_int8_t pf;
	struct net_device *in;
	struct net_device *out;
56
	struct sock *sk;
57
	struct net *net;
58
	struct list_head *hook_list;
59
	int (*okfn)(struct net *, struct sock *, struct sk_buff *);
60 61
};

62
static inline void nf_hook_state_init(struct nf_hook_state *p,
63
				      struct list_head *hook_list,
64 65 66 67
				      unsigned int hook,
				      int thresh, u_int8_t pf,
				      struct net_device *indev,
				      struct net_device *outdev,
68
				      struct sock *sk,
69
				      struct net *net,
70
				      int (*okfn)(struct net *, struct sock *, struct sk_buff *))
71 72 73 74 75 76
{
	p->hook = hook;
	p->thresh = thresh;
	p->pf = pf;
	p->in = indev;
	p->out = outdev;
77
	p->sk = sk;
78
	p->net = net;
79
	p->hook_list = hook_list;
80 81 82
	p->okfn = okfn;
}

83
typedef unsigned int nf_hookfn(void *priv,
84
			       struct sk_buff *skb,
85
			       const struct nf_hook_state *state);
L
Linus Torvalds 已提交
86

E
Eric Dumazet 已提交
87
struct nf_hook_ops {
88
	struct list_head 	list;
L
Linus Torvalds 已提交
89 90

	/* User fills in from here down. */
91
	nf_hookfn		*hook;
92
	struct net_device	*dev;
93 94 95 96
	struct module		*owner;
	void			*priv;
	u_int8_t		pf;
	unsigned int		hooknum;
L
Linus Torvalds 已提交
97
	/* Hooks are ordered in ascending priority. */
98
	int			priority;
L
Linus Torvalds 已提交
99 100
};

E
Eric Dumazet 已提交
101
struct nf_sockopt_ops {
L
Linus Torvalds 已提交
102 103
	struct list_head list;

104
	u_int8_t pf;
L
Linus Torvalds 已提交
105 106 107 108 109

	/* 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);
110
#ifdef CONFIG_COMPAT
111 112
	int (*compat_set)(struct sock *sk, int optval,
			void __user *user, unsigned int len);
113
#endif
L
Linus Torvalds 已提交
114 115 116
	int get_optmin;
	int get_optmax;
	int (*get)(struct sock *sk, int optval, void __user *user, int *len);
117
#ifdef CONFIG_COMPAT
118 119
	int (*compat_get)(struct sock *sk, int optval,
			void __user *user, int *len);
120
#endif
121 122
	/* Use the module struct to lock set/get code in place */
	struct module *owner;
L
Linus Torvalds 已提交
123 124 125
};

/* Function to register/unregister hook points. */
126 127 128 129 130 131 132
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);

L
Linus Torvalds 已提交
133 134
int nf_register_hook(struct nf_hook_ops *reg);
void nf_unregister_hook(struct nf_hook_ops *reg);
135 136
int nf_register_hooks(struct nf_hook_ops *reg, unsigned int n);
void nf_unregister_hooks(struct nf_hook_ops *reg, unsigned int n);
L
Linus Torvalds 已提交
137 138 139 140 141 142

/* 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);

143
#ifdef HAVE_JUMP_LABEL
144
extern struct static_key nf_hooks_needed[NFPROTO_NUMPROTO][NF_MAX_HOOKS];
145

146
static inline bool nf_hook_list_active(struct list_head *hook_list,
147
				       u_int8_t pf, unsigned int hook)
148 149 150
{
	if (__builtin_constant_p(pf) &&
	    __builtin_constant_p(hook))
151
		return static_key_false(&nf_hooks_needed[pf][hook]);
152

153
	return !list_empty(hook_list);
154 155
}
#else
156
static inline bool nf_hook_list_active(struct list_head *hook_list,
157
				       u_int8_t pf, unsigned int hook)
158
{
159
	return !list_empty(hook_list);
160 161 162
}
#endif

163
int nf_hook_slow(struct sk_buff *skb, struct nf_hook_state *state);
164 165 166

/**
 *	nf_hook_thresh - call a netfilter hook
167
 *
168 169 170 171
 *	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.
 */
172
static inline int nf_hook_thresh(u_int8_t pf, unsigned int hook,
173
				 struct net *net,
174
				 struct sock *sk,
175
				 struct sk_buff *skb,
176 177
				 struct net_device *indev,
				 struct net_device *outdev,
178
				 int (*okfn)(struct net *, struct sock *, struct sk_buff *),
179
				 int thresh)
180
{
181
	struct list_head *hook_list = &net->nf.hooks[pf][hook];
182

183
	if (nf_hook_list_active(hook_list, pf, hook)) {
184
		struct nf_hook_state state;
185

186
		nf_hook_state_init(&state, hook_list, hook, thresh,
187
				   pf, indev, outdev, sk, net, okfn);
188 189
		return nf_hook_slow(skb, &state);
	}
190
	return 1;
191 192
}

193 194 195
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,
196
			  int (*okfn)(struct net *, struct sock *, struct sk_buff *))
197
{
198
	return nf_hook_thresh(pf, hook, net, sk, skb, indev, outdev, okfn, INT_MIN);
199
}
L
Linus Torvalds 已提交
200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217
                   
/* 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 :)
*/

218
static inline int
219
NF_HOOK_THRESH(uint8_t pf, unsigned int hook, struct net *net, struct sock *sk,
220 221
	       struct sk_buff *skb, struct net_device *in,
	       struct net_device *out,
222 223
	       int (*okfn)(struct net *, struct sock *, struct sk_buff *),
	       int thresh)
224
{
225
	int ret = nf_hook_thresh(pf, hook, net, sk, skb, in, out, okfn, thresh);
226
	if (ret == 1)
227
		ret = okfn(net, sk, skb);
228 229
	return ret;
}
230

231
static inline int
232
NF_HOOK_COND(uint8_t pf, unsigned int hook, struct net *net, struct sock *sk,
233
	     struct sk_buff *skb, struct net_device *in, struct net_device *out,
234 235
	     int (*okfn)(struct net *, struct sock *, struct sk_buff *),
	     bool cond)
236
{
237 238 239
	int ret;

	if (!cond ||
240
	    ((ret = nf_hook_thresh(pf, hook, net, sk, skb, in, out, okfn, INT_MIN)) == 1))
241
		ret = okfn(net, sk, skb);
242 243
	return ret;
}
L
Linus Torvalds 已提交
244

245
static inline int
246
NF_HOOK(uint8_t pf, unsigned int hook, struct net *net, struct sock *sk, struct sk_buff *skb,
247
	struct net_device *in, struct net_device *out,
248
	int (*okfn)(struct net *, struct sock *, struct sk_buff *))
249
{
250
	return NF_HOOK_THRESH(pf, hook, net, sk, skb, in, out, okfn, INT_MIN);
251
}
L
Linus Torvalds 已提交
252 253

/* Call setsockopt() */
254
int nf_setsockopt(struct sock *sk, u_int8_t pf, int optval, char __user *opt,
255
		  unsigned int len);
256
int nf_getsockopt(struct sock *sk, u_int8_t pf, int optval, char __user *opt,
L
Linus Torvalds 已提交
257
		  int *len);
258
#ifdef CONFIG_COMPAT
259
int compat_nf_setsockopt(struct sock *sk, u_int8_t pf, int optval,
260
		char __user *opt, unsigned int len);
261
int compat_nf_getsockopt(struct sock *sk, u_int8_t pf, int optval,
262
		char __user *opt, int *len);
263
#endif
264

265 266 267
/* 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. */
268
int skb_make_writable(struct sk_buff *skb, unsigned int writable_len);
269

270
struct flowi;
271
struct nf_queue_entry;
272

273 274
struct nf_afinfo {
	unsigned short	family;
275
	__sum16		(*checksum)(struct sk_buff *skb, unsigned int hook,
276
				    unsigned int dataoff, u_int8_t protocol);
277 278 279 280 281
	__sum16		(*checksum_partial)(struct sk_buff *skb,
					    unsigned int hook,
					    unsigned int dataoff,
					    unsigned int len,
					    u_int8_t protocol);
282
	int		(*route)(struct net *net, struct dst_entry **dst,
283
				 struct flowi *fl, bool strict);
284
	void		(*saveroute)(const struct sk_buff *skb,
285
				     struct nf_queue_entry *entry);
286
	int		(*reroute)(struct net *net, struct sk_buff *skb,
287
				   const struct nf_queue_entry *entry);
288
	int		route_key_size;
289 290
};

E
Eric Dumazet 已提交
291
extern const struct nf_afinfo __rcu *nf_afinfo[NFPROTO_NUMPROTO];
292
static inline const struct nf_afinfo *nf_get_afinfo(unsigned short family)
293 294 295
{
	return rcu_dereference(nf_afinfo[family]);
}
296

297
static inline __sum16
298 299 300
nf_checksum(struct sk_buff *skb, unsigned int hook, unsigned int dataoff,
	    u_int8_t protocol, unsigned short family)
{
301
	const struct nf_afinfo *afinfo;
302
	__sum16 csum = 0;
303 304 305 306 307 308 309 310 311

	rcu_read_lock();
	afinfo = nf_get_afinfo(family);
	if (afinfo)
		csum = afinfo->checksum(skb, hook, dataoff, protocol);
	rcu_read_unlock();
	return csum;
}

312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328
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;
}

329 330
int nf_register_afinfo(const struct nf_afinfo *afinfo);
void nf_unregister_afinfo(const struct nf_afinfo *afinfo);
331

332
#include <net/flow.h>
333
extern void (*nf_nat_decode_session_hook)(struct sk_buff *, struct flowi *);
334 335

static inline void
336
nf_nat_decode_session(struct sk_buff *skb, struct flowi *fl, u_int8_t family)
337
{
338
#ifdef CONFIG_NF_NAT_NEEDED
339 340
	void (*decodefn)(struct sk_buff *, struct flowi *);

341 342 343 344 345
	rcu_read_lock();
	decodefn = rcu_dereference(nf_nat_decode_session_hook);
	if (decodefn)
		decodefn(skb, fl);
	rcu_read_unlock();
346 347 348
#endif
}

L
Linus Torvalds 已提交
349
#else /* !CONFIG_NETFILTER */
350 351
#define NF_HOOK(pf, hook, net, sk, skb, indev, outdev, okfn) (okfn)(net, sk, skb)
#define NF_HOOK_COND(pf, hook, net, sk, skb, indev, outdev, okfn, cond) (okfn)(net, sk, skb)
352 353 354
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,
355
			  int (*okfn)(struct net *, struct sock *, struct sk_buff *))
356
{
357
	return 1;
358 359
}
struct flowi;
360
static inline void
361 362 363
nf_nat_decode_session(struct sk_buff *skb, struct flowi *fl, u_int8_t family)
{
}
L
Linus Torvalds 已提交
364 365
#endif /*CONFIG_NETFILTER*/

366
#if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
367 368
#include <linux/netfilter/nf_conntrack_zones_common.h>

369
extern void (*ip_ct_attach)(struct sk_buff *, const struct sk_buff *) __rcu;
370
void nf_ct_attach(struct sk_buff *, const struct sk_buff *);
E
Eric Dumazet 已提交
371
extern void (*nf_ct_destroy)(struct nf_conntrack *) __rcu;
372 373 374
#else
static inline void nf_ct_attach(struct sk_buff *new, struct sk_buff *skb) {}
#endif
375 376

struct nf_conn;
377
enum ip_conntrack_info;
378 379
struct nlattr;

380
struct nfnl_ct_hook {
381 382
	struct nf_conn *(*get_ct)(struct sk_buff *skb,
				  enum ip_conntrack_info *ctinfo);
383
	size_t (*build_size)(const struct nf_conn *ct);
384 385 386
	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);
387
	int (*parse)(const struct nlattr *attr, struct nf_conn *ct);
388 389
	int (*attach_expect)(const struct nlattr *attr, struct nf_conn *ct,
			     u32 portid, u32 report);
390
	void (*seq_adjust)(struct sk_buff *skb, struct nf_conn *ct,
391
			   enum ip_conntrack_info ctinfo, s32 off);
392
};
393
extern struct nfnl_ct_hook __rcu *nfnl_ct_hook;
394

395 396 397 398 399 400 401 402 403 404 405
/**
 * 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);

L
Linus Torvalds 已提交
406
#endif /*__LINUX_NETFILTER_H*/