blob: a661fd6f76ba848e70e0e4a418f06b760bcdaa73 [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;
David S. Millerfbef0a42011-03-11 15:55:37 -050017 __u8 tos;
18 __u8 scope;
19 __u8 proto;
20 __u8 flags;
21#define FLOWI_FLAG_ANYSRC 0x01
22#define FLOWI_FLAG_PRECOW_METRICS 0x02
23#define FLOWI_FLAG_CAN_SLEEP 0x04
24 __u32 secid;
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
26 union {
27 struct {
Al Virof2c3fe22006-09-26 21:26:42 -070028 __be32 daddr;
29 __be32 saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 } ip4_u;
31
32 struct {
33 struct in6_addr daddr;
34 struct in6_addr saddr;
Al Viro90bcaf72006-11-08 00:25:17 -080035 __be32 flowlabel;
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 } ip6_u;
37
38 struct {
Steven Whitehousec4ea94a2006-03-20 22:42:39 -080039 __le16 daddr;
40 __le16 saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 __u8 scope;
42 } dn_u;
43 } nl_u;
44#define fld_dst nl_u.dn_u.daddr
45#define fld_src nl_u.dn_u.saddr
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#define fld_scope nl_u.dn_u.scope
47#define fl6_dst nl_u.ip6_u.daddr
48#define fl6_src nl_u.ip6_u.saddr
49#define fl6_flowlabel nl_u.ip6_u.flowlabel
50#define fl4_dst nl_u.ip4_u.daddr
51#define fl4_src nl_u.ip4_u.saddr
David S. Millerfbef0a42011-03-11 15:55:37 -050052#define fl4_tos tos
53#define fl4_scope scope
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 union {
56 struct {
Al Virocc939d32006-09-27 18:33:22 -070057 __be16 sport;
58 __be16 dport;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 } ports;
60
61 struct {
62 __u8 type;
63 __u8 code;
64 } icmpt;
65
66 struct {
Steven Whitehousec4ea94a2006-03-20 22:42:39 -080067 __le16 sport;
68 __le16 dport;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 } dnports;
70
Al Viro4324a172006-09-27 18:49:07 -070071 __be32 spi;
Timo Teräscc9ff192010-11-03 04:41:38 +000072 __be32 gre_key;
Masahide NAKAMURA2b741652006-08-23 20:34:26 -070073
Masahide NAKAMURA2b741652006-08-23 20:34:26 -070074 struct {
75 __u8 type;
76 } mht;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 } uli_u;
78#define fl_ip_sport uli_u.ports.sport
79#define fl_ip_dport uli_u.ports.dport
80#define fl_icmp_type uli_u.icmpt.type
81#define fl_icmp_code uli_u.icmpt.code
82#define fl_ipsec_spi uli_u.spi
Masahide NAKAMURA2b741652006-08-23 20:34:26 -070083#define fl_mh_type uli_u.mht.type
Timo Teräscc9ff192010-11-03 04:41:38 +000084#define fl_gre_key uli_u.gre_key
Linus Torvalds1da177e2005-04-16 15:20:36 -070085} __attribute__((__aligned__(BITS_PER_LONG/8)));
86
87#define FLOW_DIR_IN 0
88#define FLOW_DIR_OUT 1
89#define FLOW_DIR_FWD 2
90
Alexey Dobriyan52479b62008-11-25 17:35:18 -080091struct net;
Trent Jaegerdf718372005-12-13 23:12:27 -080092struct sock;
Timo Teräsfe1a5f02010-04-07 00:30:04 +000093struct flow_cache_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
Timo Teräsfe1a5f02010-04-07 00:30:04 +000095struct flow_cache_object {
96 const struct flow_cache_ops *ops;
97};
98
99struct flow_cache_ops {
100 struct flow_cache_object *(*get)(struct flow_cache_object *);
101 int (*check)(struct flow_cache_object *);
102 void (*delete)(struct flow_cache_object *);
103};
104
105typedef struct flow_cache_object *(*flow_resolve_t)(
David S. Millerdee9f4b2011-02-22 18:44:31 -0800106 struct net *net, const struct flowi *key, u16 family,
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000107 u8 dir, struct flow_cache_object *oldobj, void *ctx);
108
109extern struct flow_cache_object *flow_cache_lookup(
David S. Millerdee9f4b2011-02-22 18:44:31 -0800110 struct net *net, const struct flowi *key, u16 family,
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000111 u8 dir, flow_resolve_t resolver, void *ctx);
112
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113extern void flow_cache_flush(void);
114extern atomic_t flow_cache_genid;
115
David S. Miller0730b9a2011-02-22 18:27:22 -0800116static inline int flow_cache_uli_match(const struct flowi *fl1,
117 const struct flowi *fl2)
Masahide NAKAMURA157bfc22007-04-30 00:33:35 -0700118{
119 return (fl1->proto == fl2->proto &&
120 !memcmp(&fl1->uli_u, &fl2->uli_u, sizeof(fl1->uli_u)));
121}
122
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123#endif