flow.h 2.5 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 *
 *	Generic internet FLOW.
 *
 */

#ifndef _NET_FLOW_H
#define _NET_FLOW_H

#include <linux/in6.h>
#include <asm/atomic.h>

struct flowi {
	int	oif;
	int	iif;
16
	__u32	mark;
L
Linus Torvalds 已提交
17 18 19

	union {
		struct {
20 21
			__be32			daddr;
			__be32			saddr;
L
Linus Torvalds 已提交
22 23 24 25 26 27 28
			__u8			tos;
			__u8			scope;
		} ip4_u;
		
		struct {
			struct in6_addr		daddr;
			struct in6_addr		saddr;
A
Al Viro 已提交
29
			__be32			flowlabel;
L
Linus Torvalds 已提交
30 31 32
		} ip6_u;

		struct {
33 34
			__le16			daddr;
			__le16			saddr;
L
Linus Torvalds 已提交
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
			__u8			scope;
		} dn_u;
	} nl_u;
#define fld_dst		nl_u.dn_u.daddr
#define fld_src		nl_u.dn_u.saddr
#define fld_scope	nl_u.dn_u.scope
#define fl6_dst		nl_u.ip6_u.daddr
#define fl6_src		nl_u.ip6_u.saddr
#define fl6_flowlabel	nl_u.ip6_u.flowlabel
#define fl4_dst		nl_u.ip4_u.daddr
#define fl4_src		nl_u.ip4_u.saddr
#define fl4_tos		nl_u.ip4_u.tos
#define fl4_scope	nl_u.ip4_u.scope

	__u8	proto;
50
	__u8	flags;
D
David S. Miller 已提交
51 52
#define FLOWI_FLAG_ANYSRC		0x01
#define FLOWI_FLAG_PRECOW_METRICS	0x02
D
David S. Miller 已提交
53
#define FLOWI_FLAG_CAN_SLEEP		0x04
L
Linus Torvalds 已提交
54 55
	union {
		struct {
56 57
			__be16	sport;
			__be16	dport;
L
Linus Torvalds 已提交
58 59 60 61 62 63 64 65
		} ports;

		struct {
			__u8	type;
			__u8	code;
		} icmpt;

		struct {
66 67
			__le16	sport;
			__le16	dport;
L
Linus Torvalds 已提交
68 69
		} dnports;

A
Al Viro 已提交
70
		__be32		spi;
71
		__be32		gre_key;
72 73 74 75

		struct {
			__u8	type;
		} mht;
L
Linus Torvalds 已提交
76 77 78 79 80 81
	} uli_u;
#define fl_ip_sport	uli_u.ports.sport
#define fl_ip_dport	uli_u.ports.dport
#define fl_icmp_type	uli_u.icmpt.type
#define fl_icmp_code	uli_u.icmpt.code
#define fl_ipsec_spi	uli_u.spi
82
#define fl_mh_type	uli_u.mht.type
83
#define fl_gre_key	uli_u.gre_key
84
	__u32           secid;	/* used by xfrm; see secid.txt */
L
Linus Torvalds 已提交
85 86 87 88 89 90
} __attribute__((__aligned__(BITS_PER_LONG/8)));

#define FLOW_DIR_IN	0
#define FLOW_DIR_OUT	1
#define FLOW_DIR_FWD	2

A
Alexey Dobriyan 已提交
91
struct net;
92
struct sock;
93 94 95 96 97 98 99 100 101 102 103 104 105
struct flow_cache_ops;

struct flow_cache_object {
	const struct flow_cache_ops *ops;
};

struct flow_cache_ops {
	struct flow_cache_object *(*get)(struct flow_cache_object *);
	int (*check)(struct flow_cache_object *);
	void (*delete)(struct flow_cache_object *);
};

typedef struct flow_cache_object *(*flow_resolve_t)(
106
		struct net *net, const struct flowi *key, u16 family,
107 108 109
		u8 dir, struct flow_cache_object *oldobj, void *ctx);

extern struct flow_cache_object *flow_cache_lookup(
110
		struct net *net, const struct flowi *key, u16 family,
111
		u8 dir, flow_resolve_t resolver, void *ctx);
L
Linus Torvalds 已提交
112 113 114 115

extern void flow_cache_flush(void);
extern atomic_t flow_cache_genid;

116 117
static inline int flow_cache_uli_match(const struct flowi *fl1,
				       const struct flowi *fl2)
118 119 120 121 122
{
	return (fl1->proto == fl2->proto &&
		!memcmp(&fl1->uli_u, &fl2->uli_u, sizeof(fl1->uli_u)));
}

L
Linus Torvalds 已提交
123
#endif