3 * Generic internet FLOW.
10 #include <linux/in6.h>
11 #include <asm/atomic.h>
27 struct in6_addr daddr
;
28 struct in6_addr saddr
;
38 #define fld_dst nl_u.dn_u.daddr
39 #define fld_src nl_u.dn_u.saddr
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
46 #define fl4_tos nl_u.ip4_u.tos
47 #define fl4_scope nl_u.ip4_u.scope
51 #define FLOWI_FLAG_MULTIPATHOLDROUTE 0x01
70 #ifdef CONFIG_IPV6_MIP6
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
81 #ifdef CONFIG_IPV6_MIP6
82 #define fl_mh_type uli_u.mht.type
84 __u32 secid
; /* used by xfrm; see secid.txt */
85 } __attribute__((__aligned__(BITS_PER_LONG
/8)));
88 #define FLOW_DIR_OUT 1
89 #define FLOW_DIR_FWD 2
92 typedef int (*flow_resolve_t
)(struct flowi
*key
, u16 family
, u8 dir
,
93 void **objp
, atomic_t
**obj_refp
);
95 extern void *flow_cache_lookup(struct flowi
*key
, u16 family
, u8 dir
,
96 flow_resolve_t resolver
);
97 extern void flow_cache_flush(void);
98 extern atomic_t flow_cache_genid
;
100 static inline int flow_cache_uli_match(struct flowi
*fl1
, struct flowi
*fl2
)
102 return (fl1
->proto
== fl2
->proto
&&
103 !memcmp(&fl1
->uli_u
, &fl2
->uli_u
, sizeof(fl1
->uli_u
)));