f80df99bfe3c1b7f61b55b9cc067d55d6f930ad3
[sliver-openvswitch.git] / datapath / tunnel.h
1 /*
2  * Copyright (c) 2010, 2011 Nicira Networks.
3  * Distributed under the terms of the GNU GPL version 2.
4  *
5  * Significant portions of this file may be copied from parts of the Linux
6  * kernel, by Linus Torvalds and others.
7  */
8
9 #ifndef TUNNEL_H
10 #define TUNNEL_H 1
11
12 #include <linux/version.h>
13
14 #include "flow.h"
15 #include "openvswitch/tunnel.h"
16 #include "vport.h"
17
18 /*
19  * The absolute minimum fragment size.  Note that there are many other
20  * definitions of the minimum MTU.
21  */
22 #define IP_MIN_MTU 68
23
24 /*
25  * One of these goes in struct tnl_ops and in tnl_find_port().
26  * These values are in the same namespace as other TNL_T_* values, so
27  * only the least significant 10 bits are available to define protocol
28  * identifiers.
29  */
30 #define TNL_T_PROTO_GRE         0
31 #define TNL_T_PROTO_CAPWAP      1
32
33 /* These flags are only needed when calling tnl_find_port(). */
34 #define TNL_T_KEY_EXACT         (1 << 10)
35 #define TNL_T_KEY_MATCH         (1 << 11)
36
37 /* Private flags not exposed to userspace in this form. */
38 #define TNL_F_IN_KEY_MATCH      (1 << 16) /* Store the key in tun_id to match in flow table. */
39 #define TNL_F_OUT_KEY_ACTION    (1 << 17) /* Get the key from a SET_TUNNEL action. */
40
41 /* All public tunnel flags. */
42 #define TNL_F_PUBLIC (TNL_F_CSUM | TNL_F_TOS_INHERIT | TNL_F_TTL_INHERIT | \
43                       TNL_F_DF_INHERIT | TNL_F_DF_DEFAULT | TNL_F_PMTUD | \
44                       TNL_F_HDR_CACHE | TNL_F_IPSEC)
45
46 /**
47  * struct port_lookup_key - Tunnel port key, used as hash table key.
48  * @in_key: Key to match on input, 0 for wildcard.
49  * @saddr: IPv4 source address to match, 0 to accept any source address.
50  * @daddr: IPv4 destination of tunnel.
51  * @tunnel_type: Set of TNL_T_* flags that define lookup.
52  */
53 struct port_lookup_key {
54         __be64 in_key;
55         __be32 saddr;
56         __be32 daddr;
57         u32    tunnel_type;
58 };
59
60 #define PORT_KEY_LEN    (offsetof(struct port_lookup_key, tunnel_type) + \
61                          FIELD_SIZEOF(struct port_lookup_key, tunnel_type))
62
63 /**
64  * struct tnl_mutable_config - modifiable configuration for a tunnel.
65  * @key: Used as key for tunnel port.  Configured via OVS_TUNNEL_ATTR_*
66  * attributes.
67  * @rcu: RCU callback head for deferred destruction.
68  * @seq: Sequence number for distinguishing configuration versions.
69  * @tunnel_hlen: Tunnel header length.
70  * @eth_addr: Source address for packets generated by tunnel itself
71  * (e.g. ICMP fragmentation needed messages).
72  * @out_key: Key to use on output, 0 if this tunnel has no fixed output key.
73  * @flags: TNL_F_* flags.
74  * @tos: IPv4 TOS value to use for tunnel, 0 if no fixed TOS.
75  * @ttl: IPv4 TTL value to use for tunnel, 0 if no fixed TTL.
76  */
77 struct tnl_mutable_config {
78         struct port_lookup_key key;
79         struct rcu_head rcu;
80
81         unsigned seq;
82
83         unsigned tunnel_hlen;
84
85         unsigned char eth_addr[ETH_ALEN];
86
87         /* Configured via OVS_TUNNEL_ATTR_* attributes. */
88         __be64  out_key;
89         u32     flags;
90         u8      tos;
91         u8      ttl;
92
93         /* Multicast configuration. */
94         int     mlink;
95 };
96
97 struct tnl_ops {
98         u32 tunnel_type;        /* Put the TNL_T_PROTO_* type in here. */
99         u8 ipproto;             /* The IP protocol for the tunnel. */
100
101         /*
102          * Returns the length of the tunnel header that will be added in
103          * build_header() (i.e. excludes the IP header).  Returns a negative
104          * error code if the configuration is invalid.
105          */
106         int (*hdr_len)(const struct tnl_mutable_config *);
107
108         /*
109          * Builds the static portion of the tunnel header, which is stored in
110          * the header cache.  In general the performance of this function is
111          * not too important as we try to only call it when building the cache
112          * so it is preferable to shift as much work as possible here.  However,
113          * in some circumstances caching is disabled and this function will be
114          * called for every packet, so try not to make it too slow.
115          */
116         void (*build_header)(const struct vport *,
117                              const struct tnl_mutable_config *, void *header);
118
119         /*
120          * Updates the cached header of a packet to match the actual packet
121          * data.  Typical things that might need to be updated are length,
122          * checksum, etc.  The IP header will have already been updated and this
123          * is the final step before transmission.  Returns a linked list of
124          * completed SKBs (multiple packets may be generated in the event
125          * of fragmentation).
126          */
127         struct sk_buff *(*update_header)(const struct vport *,
128                                          const struct tnl_mutable_config *,
129                                          struct dst_entry *, struct sk_buff *);
130 };
131
132 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,20)
133 /*
134  * On these kernels we have a fast mechanism to tell if the ARP cache for a
135  * particular destination has changed.
136  */
137 #define HAVE_HH_SEQ
138 #endif
139 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,27)
140 /*
141  * On these kernels we have a fast mechanism to tell if the routing table
142  * has changed.
143  */
144 #define HAVE_RT_GENID
145 #endif
146 #if !defined(HAVE_HH_SEQ) || !defined(HAVE_RT_GENID)
147 /* If we can't detect all system changes directly we need to use a timeout. */
148 #define NEED_CACHE_TIMEOUT
149 #endif
150 struct tnl_cache {
151         struct rcu_head rcu;
152
153         int len;                /* Length of data to be memcpy'd from cache. */
154         int hh_len;             /* Hardware hdr length, cached from hh_cache. */
155
156         /* Sequence number of mutable->seq from which this cache was generated. */
157         unsigned mutable_seq;
158
159 #ifdef HAVE_HH_SEQ
160         /*
161          * The sequence number from the seqlock protecting the hardware header
162          * cache (in the ARP cache).  Since every write increments the counter
163          * this gives us an easy way to tell if it has changed.
164          */
165         unsigned hh_seq;
166 #endif
167
168 #ifdef NEED_CACHE_TIMEOUT
169         /*
170          * If we don't have direct mechanisms to detect all important changes in
171          * the system fall back to an expiration time.  This expiration time
172          * can be relatively short since at high rates there will be millions of
173          * packets per second, so we'll still get plenty of benefit from the
174          * cache.  Note that if something changes we may blackhole packets
175          * until the expiration time (depending on what changed and the kernel
176          * version we may be able to detect the change sooner).  Expiration is
177          * expressed as a time in jiffies.
178          */
179         unsigned long expiration;
180 #endif
181
182         /*
183          * The routing table entry that is the result of looking up the tunnel
184          * endpoints.  It also contains a sequence number (called a generation
185          * ID) that can be compared to a global sequence to tell if the routing
186          * table has changed (and therefore there is a potential that this
187          * cached route has been invalidated).
188          */
189         struct rtable *rt;
190
191         /*
192          * If the output device for tunnel traffic is an OVS internal device,
193          * the flow of that datapath.  Since all tunnel traffic will have the
194          * same headers this allows us to cache the flow lookup.  NULL if the
195          * output device is not OVS or if there is no flow installed.
196          */
197         struct sw_flow *flow;
198
199         /* The cached header follows after padding for alignment. */
200 };
201
202 struct tnl_vport {
203         struct rcu_head rcu;
204         struct hlist_node hash_node;
205
206         char name[IFNAMSIZ];
207         const struct tnl_ops *tnl_ops;
208
209         struct tnl_mutable_config __rcu *mutable;
210
211         /*
212          * ID of last fragment sent (for tunnel protocols with direct support
213          * fragmentation).  If the protocol relies on IP fragmentation then
214          * this is not needed.
215          */
216         atomic_t frag_id;
217
218         spinlock_t cache_lock;
219         struct tnl_cache __rcu *cache;          /* Protected by RCU/cache_lock. */
220
221 #ifdef NEED_CACHE_TIMEOUT
222         /*
223          * If we must rely on expiration time to invalidate the cache, this is
224          * the interval.  It is randomized within a range (defined by
225          * MAX_CACHE_EXP in tunnel.c) to avoid synchronized expirations caused
226          * by creation of a large number of tunnels at a one time.
227          */
228         unsigned long cache_exp_interval;
229 #endif
230 };
231
232 struct vport *tnl_create(const struct vport_parms *, const struct vport_ops *,
233                          const struct tnl_ops *);
234 void tnl_destroy(struct vport *);
235
236 int tnl_set_options(struct vport *, struct nlattr *);
237 int tnl_get_options(const struct vport *, struct sk_buff *);
238
239 int tnl_set_addr(struct vport *vport, const unsigned char *addr);
240 const char *tnl_get_name(const struct vport *vport);
241 const unsigned char *tnl_get_addr(const struct vport *vport);
242 int tnl_send(struct vport *vport, struct sk_buff *skb);
243 void tnl_rcv(struct vport *vport, struct sk_buff *skb, u8 tos);
244
245 struct vport *tnl_find_port(__be32 saddr, __be32 daddr, __be64 key,
246                             int tunnel_type,
247                             const struct tnl_mutable_config **mutable);
248 bool tnl_frag_needed(struct vport *vport,
249                      const struct tnl_mutable_config *mutable,
250                      struct sk_buff *skb, unsigned int mtu, __be64 flow_key);
251 void tnl_free_linked_skbs(struct sk_buff *skb);
252
253 int tnl_init(void);
254 void tnl_exit(void);
255 static inline struct tnl_vport *tnl_vport_priv(const struct vport *vport)
256 {
257         return vport_priv(vport);
258 }
259
260
261 #endif /* tunnel.h */