| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
 | 2 |  * | 
 | 3 |  *	Generic internet FLOW. | 
 | 4 |  * | 
 | 5 |  */ | 
 | 6 |  | 
 | 7 | #ifndef _NET_FLOW_H | 
 | 8 | #define _NET_FLOW_H | 
 | 9 |  | 
 | 10 | #include <linux/in6.h> | 
 | 11 | #include <asm/atomic.h> | 
 | 12 |  | 
 | 13 | struct flowi { | 
 | 14 | 	int	oif; | 
 | 15 | 	int	iif; | 
| Thomas Graf | 47dcf0c | 2006-11-09 15:20:38 -0800 | [diff] [blame] | 16 | 	__u32	mark; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 |  | 
 | 18 | 	union { | 
 | 19 | 		struct { | 
| Al Viro | f2c3fe2 | 2006-09-26 21:26:42 -0700 | [diff] [blame] | 20 | 			__be32			daddr; | 
 | 21 | 			__be32			saddr; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | 			__u8			tos; | 
 | 23 | 			__u8			scope; | 
 | 24 | 		} ip4_u; | 
 | 25 | 		 | 
 | 26 | 		struct { | 
 | 27 | 			struct in6_addr		daddr; | 
 | 28 | 			struct in6_addr		saddr; | 
| Al Viro | 90bcaf7 | 2006-11-08 00:25:17 -0800 | [diff] [blame] | 29 | 			__be32			flowlabel; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | 		} ip6_u; | 
 | 31 |  | 
 | 32 | 		struct { | 
| Steven Whitehouse | c4ea94a | 2006-03-20 22:42:39 -0800 | [diff] [blame] | 33 | 			__le16			daddr; | 
 | 34 | 			__le16			saddr; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | 			__u8			scope; | 
 | 36 | 		} dn_u; | 
 | 37 | 	} nl_u; | 
 | 38 | #define fld_dst		nl_u.dn_u.daddr | 
 | 39 | #define fld_src		nl_u.dn_u.saddr | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | #define fld_scope	nl_u.dn_u.scope | 
 | 41 | #define fl6_dst		nl_u.ip6_u.daddr | 
 | 42 | #define fl6_src		nl_u.ip6_u.saddr | 
 | 43 | #define fl6_flowlabel	nl_u.ip6_u.flowlabel | 
 | 44 | #define fl4_dst		nl_u.ip4_u.daddr | 
 | 45 | #define fl4_src		nl_u.ip4_u.saddr | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | #define fl4_tos		nl_u.ip4_u.tos | 
 | 47 | #define fl4_scope	nl_u.ip4_u.scope | 
 | 48 |  | 
 | 49 | 	__u8	proto; | 
| Julian Anastasov | a210d01 | 2008-10-01 07:28:28 -0700 | [diff] [blame] | 50 | 	__u8	flags; | 
 | 51 | #define FLOWI_FLAG_ANYSRC 0x01 | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | 	union { | 
 | 53 | 		struct { | 
| Al Viro | cc939d3 | 2006-09-27 18:33:22 -0700 | [diff] [blame] | 54 | 			__be16	sport; | 
 | 55 | 			__be16	dport; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | 		} ports; | 
 | 57 |  | 
 | 58 | 		struct { | 
 | 59 | 			__u8	type; | 
 | 60 | 			__u8	code; | 
 | 61 | 		} icmpt; | 
 | 62 |  | 
 | 63 | 		struct { | 
| Steven Whitehouse | c4ea94a | 2006-03-20 22:42:39 -0800 | [diff] [blame] | 64 | 			__le16	sport; | 
 | 65 | 			__le16	dport; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | 		} dnports; | 
 | 67 |  | 
| Al Viro | 4324a17 | 2006-09-27 18:49:07 -0700 | [diff] [blame] | 68 | 		__be32		spi; | 
| Masahide NAKAMURA | 2b74165 | 2006-08-23 20:34:26 -0700 | [diff] [blame] | 69 |  | 
| Masahide NAKAMURA | 2b74165 | 2006-08-23 20:34:26 -0700 | [diff] [blame] | 70 | 		struct { | 
 | 71 | 			__u8	type; | 
 | 72 | 		} mht; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | 	} uli_u; | 
 | 74 | #define fl_ip_sport	uli_u.ports.sport | 
 | 75 | #define fl_ip_dport	uli_u.ports.dport | 
 | 76 | #define fl_icmp_type	uli_u.icmpt.type | 
 | 77 | #define fl_icmp_code	uli_u.icmpt.code | 
 | 78 | #define fl_ipsec_spi	uli_u.spi | 
| Masahide NAKAMURA | 2b74165 | 2006-08-23 20:34:26 -0700 | [diff] [blame] | 79 | #define fl_mh_type	uli_u.mht.type | 
| Venkat Yekkirala | b6340fc | 2006-07-24 23:28:37 -0700 | [diff] [blame] | 80 | 	__u32           secid;	/* used by xfrm; see secid.txt */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | } __attribute__((__aligned__(BITS_PER_LONG/8))); | 
 | 82 |  | 
 | 83 | #define FLOW_DIR_IN	0 | 
 | 84 | #define FLOW_DIR_OUT	1 | 
 | 85 | #define FLOW_DIR_FWD	2 | 
 | 86 |  | 
| Alexey Dobriyan | 52479b6 | 2008-11-25 17:35:18 -0800 | [diff] [blame] | 87 | struct net; | 
| Trent Jaeger | df71837 | 2005-12-13 23:12:27 -0800 | [diff] [blame] | 88 | struct sock; | 
| Timo Teräs | fe1a5f0 | 2010-04-07 00:30:04 +0000 | [diff] [blame] | 89 | struct flow_cache_ops; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 |  | 
| Timo Teräs | fe1a5f0 | 2010-04-07 00:30:04 +0000 | [diff] [blame] | 91 | struct flow_cache_object { | 
 | 92 | 	const struct flow_cache_ops *ops; | 
 | 93 | }; | 
 | 94 |  | 
 | 95 | struct flow_cache_ops { | 
 | 96 | 	struct flow_cache_object *(*get)(struct flow_cache_object *); | 
 | 97 | 	int (*check)(struct flow_cache_object *); | 
 | 98 | 	void (*delete)(struct flow_cache_object *); | 
 | 99 | }; | 
 | 100 |  | 
 | 101 | typedef struct flow_cache_object *(*flow_resolve_t)( | 
 | 102 | 		struct net *net, struct flowi *key, u16 family, | 
 | 103 | 		u8 dir, struct flow_cache_object *oldobj, void *ctx); | 
 | 104 |  | 
 | 105 | extern struct flow_cache_object *flow_cache_lookup( | 
 | 106 | 		struct net *net, struct flowi *key, u16 family, | 
 | 107 | 		u8 dir, flow_resolve_t resolver, void *ctx); | 
 | 108 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | extern void flow_cache_flush(void); | 
 | 110 | extern atomic_t flow_cache_genid; | 
 | 111 |  | 
| Masahide NAKAMURA | 157bfc2 | 2007-04-30 00:33:35 -0700 | [diff] [blame] | 112 | static inline int flow_cache_uli_match(struct flowi *fl1, struct flowi *fl2) | 
 | 113 | { | 
 | 114 | 	return (fl1->proto == fl2->proto && | 
 | 115 | 		!memcmp(&fl1->uli_u, &fl2->uli_u, sizeof(fl1->uli_u))); | 
 | 116 | } | 
 | 117 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | #endif |