flow.h 1.9 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 50 51
			__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;
	union {
		struct {
52 53
			__be16	sport;
			__be16	dport;
L
Linus Torvalds 已提交
54 55 56 57 58 59 60 61
		} ports;

		struct {
			__u8	type;
			__u8	code;
		} icmpt;

		struct {
62 63
			__le16	sport;
			__le16	dport;
L
Linus Torvalds 已提交
64 65
		} dnports;

A
Al Viro 已提交
66
		__be32		spi;
67 68 69 70

		struct {
			__u8	type;
		} mht;
L
Linus Torvalds 已提交
71 72 73 74 75 76
	} 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
77
#define fl_mh_type	uli_u.mht.type
78
	__u32           secid;	/* used by xfrm; see secid.txt */
L
Linus Torvalds 已提交
79 80 81 82 83 84
} __attribute__((__aligned__(BITS_PER_LONG/8)));

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

85
struct sock;
86
typedef int (*flow_resolve_t)(struct flowi *key, u16 family, u8 dir,
L
Linus Torvalds 已提交
87 88
			       void **objp, atomic_t **obj_refp);

89
extern void *flow_cache_lookup(struct flowi *key, u16 family, u8 dir,
90
	 		       flow_resolve_t resolver);
L
Linus Torvalds 已提交
91 92 93
extern void flow_cache_flush(void);
extern atomic_t flow_cache_genid;

94 95 96 97 98 99
static inline int flow_cache_uli_match(struct flowi *fl1, struct flowi *fl2)
{
	return (fl1->proto == fl2->proto &&
		!memcmp(&fl1->uli_u, &fl2->uli_u, sizeof(fl1->uli_u)));
}

L
Linus Torvalds 已提交
100
#endif