blob: f2080e65276d14e308095e9cc1676ce5c8158aa1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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
13struct flowi {
14 int oif;
15 int iif;
Thomas Graf47dcf0c2006-11-09 15:20:38 -080016 __u32 mark;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
18 union {
19 struct {
Al Virof2c3fe22006-09-26 21:26:42 -070020 __be32 daddr;
21 __be32 saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 __u8 tos;
23 __u8 scope;
24 } ip4_u;
25
26 struct {
27 struct in6_addr daddr;
28 struct in6_addr saddr;
Al Viro90bcaf72006-11-08 00:25:17 -080029 __be32 flowlabel;
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 } ip6_u;
31
32 struct {
Steven Whitehousec4ea94a2006-03-20 22:42:39 -080033 __le16 daddr;
34 __le16 saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 __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 Torvalds1da177e2005-04-16 15:20:36 -070040#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 Torvalds1da177e2005-04-16 15:20:36 -070046#define fl4_tos nl_u.ip4_u.tos
47#define fl4_scope nl_u.ip4_u.scope
48
49 __u8 proto;
Julian Anastasova210d012008-10-01 07:28:28 -070050 __u8 flags;
David S. Millera4daad62011-01-27 22:01:53 -080051#define FLOWI_FLAG_ANYSRC 0x01
52#define FLOWI_FLAG_PRECOW_METRICS 0x02
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 union {
54 struct {
Al Virocc939d32006-09-27 18:33:22 -070055 __be16 sport;
56 __be16 dport;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 } ports;
58
59 struct {
60 __u8 type;
61 __u8 code;
62 } icmpt;
63
64 struct {
Steven Whitehousec4ea94a2006-03-20 22:42:39 -080065 __le16 sport;
66 __le16 dport;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 } dnports;
68
Al Viro4324a172006-09-27 18:49:07 -070069 __be32 spi;
Timo Teräscc9ff192010-11-03 04:41:38 +000070 __be32 gre_key;
Masahide NAKAMURA2b741652006-08-23 20:34:26 -070071
Masahide NAKAMURA2b741652006-08-23 20:34:26 -070072 struct {
73 __u8 type;
74 } mht;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 } uli_u;
76#define fl_ip_sport uli_u.ports.sport
77#define fl_ip_dport uli_u.ports.dport
78#define fl_icmp_type uli_u.icmpt.type
79#define fl_icmp_code uli_u.icmpt.code
80#define fl_ipsec_spi uli_u.spi
Masahide NAKAMURA2b741652006-08-23 20:34:26 -070081#define fl_mh_type uli_u.mht.type
Timo Teräscc9ff192010-11-03 04:41:38 +000082#define fl_gre_key uli_u.gre_key
Venkat Yekkiralab6340fc2006-07-24 23:28:37 -070083 __u32 secid; /* used by xfrm; see secid.txt */
Linus Torvalds1da177e2005-04-16 15:20:36 -070084} __attribute__((__aligned__(BITS_PER_LONG/8)));
85
86#define FLOW_DIR_IN 0
87#define FLOW_DIR_OUT 1
88#define FLOW_DIR_FWD 2
89
Alexey Dobriyan52479b62008-11-25 17:35:18 -080090struct net;
Trent Jaegerdf718372005-12-13 23:12:27 -080091struct sock;
Timo Teräsfe1a5f02010-04-07 00:30:04 +000092struct flow_cache_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Timo Teräsfe1a5f02010-04-07 00:30:04 +000094struct flow_cache_object {
95 const struct flow_cache_ops *ops;
96};
97
98struct flow_cache_ops {
99 struct flow_cache_object *(*get)(struct flow_cache_object *);
100 int (*check)(struct flow_cache_object *);
101 void (*delete)(struct flow_cache_object *);
102};
103
104typedef struct flow_cache_object *(*flow_resolve_t)(
David S. Millerdee9f4b2011-02-22 18:44:31 -0800105 struct net *net, const struct flowi *key, u16 family,
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000106 u8 dir, struct flow_cache_object *oldobj, void *ctx);
107
108extern struct flow_cache_object *flow_cache_lookup(
David S. Millerdee9f4b2011-02-22 18:44:31 -0800109 struct net *net, const struct flowi *key, u16 family,
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000110 u8 dir, flow_resolve_t resolver, void *ctx);
111
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112extern void flow_cache_flush(void);
113extern atomic_t flow_cache_genid;
114
David S. Miller0730b9a2011-02-22 18:27:22 -0800115static inline int flow_cache_uli_match(const struct flowi *fl1,
116 const struct flowi *fl2)
Masahide NAKAMURA157bfc22007-04-30 00:33:35 -0700117{
118 return (fl1->proto == fl2->proto &&
119 !memcmp(&fl1->uli_u, &fl2->uli_u, sizeof(fl1->uli_u)));
120}
121
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122#endif