tunnel: Generate datapath flows for tunneled packets dropped due to ECN.
[sliver-openvswitch.git] / ofproto / tunnel.c
1 /* Copyright (c) 2013 Nicira, Inc.
2  *
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License. */
14
15 #include <config.h>
16 #include "tunnel.h"
17
18 #include <errno.h>
19
20 #include "ofproto/ofproto-provider.h"
21 #include "byte-order.h"
22 #include "dynamic-string.h"
23 #include "hash.h"
24 #include "hmap.h"
25 #include "netdev-vport.h"
26 #include "odp-util.h"
27 #include "packets.h"
28 #include "smap.h"
29 #include "socket-util.h"
30 #include "tunnel.h"
31 #include "vlog.h"
32
33 /* XXX:
34  *
35  * Ability to generate actions on input for ECN
36  * Ability to generate metadata for packet-outs
37  * Disallow netdevs with names like "gre64_system" to prevent collisions. */
38
39 VLOG_DEFINE_THIS_MODULE(tunnel);
40
41 /* skb mark used for IPsec tunnel packets */
42 #define IPSEC_MARK 1
43
44 struct tnl_match {
45     ovs_be64 in_key;
46     ovs_be32 ip_src;
47     ovs_be32 ip_dst;
48     uint32_t odp_port;
49     uint32_t skb_mark;
50     bool in_key_flow;
51 };
52
53 struct tnl_port {
54     struct hmap_node match_node;
55
56     const struct ofport *ofport;
57     unsigned int netdev_seq;
58     struct tnl_match match;
59 };
60
61 static struct hmap tnl_match_map = HMAP_INITIALIZER(&tnl_match_map);
62
63 /* Returned to callers when their ofport will never be used to receive or send
64  * tunnel traffic. Alternatively, we could ask the caller to delete their
65  * ofport, but this would be unclean in the reconfguration case.  For the first
66  * time, an ofproto provider would have to call ofproto_port_del() on itself.*/
67 static struct tnl_port void_tnl_port;
68
69 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
70 static struct vlog_rate_limit dbg_rl = VLOG_RATE_LIMIT_INIT(60, 60);
71
72 static struct tnl_port *tnl_find(struct tnl_match *);
73 static struct tnl_port *tnl_find_exact(struct tnl_match *);
74 static uint32_t tnl_hash(struct tnl_match *);
75 static void tnl_match_fmt(const struct tnl_match *, struct ds *);
76 static char *tnl_port_fmt(const struct tnl_port *);
77 static void tnl_port_mod_log(const struct tnl_port *, const char *action);
78 static const char *tnl_port_get_name(const struct tnl_port *);
79
80 static struct tnl_port *
81 tnl_port_add__(const struct ofport *ofport, uint32_t odp_port,
82                bool warn)
83 {
84     const struct netdev_tunnel_config *cfg;
85     struct tnl_port *existing_port;
86     struct tnl_port *tnl_port;
87
88     cfg = netdev_get_tunnel_config(ofport->netdev);
89     ovs_assert(cfg);
90
91     tnl_port = xzalloc(sizeof *tnl_port);
92     tnl_port->ofport = ofport;
93     tnl_port->netdev_seq = netdev_change_seq(tnl_port->ofport->netdev);
94
95     tnl_port->match.in_key = cfg->in_key;
96     tnl_port->match.ip_src = cfg->ip_src;
97     tnl_port->match.ip_dst = cfg->ip_dst;
98     tnl_port->match.skb_mark = cfg->ipsec ? IPSEC_MARK : 0;
99     tnl_port->match.in_key_flow = cfg->in_key_flow;
100     tnl_port->match.odp_port = odp_port;
101
102     existing_port = tnl_find_exact(&tnl_port->match);
103     if (existing_port) {
104         if (warn) {
105             struct ds ds = DS_EMPTY_INITIALIZER;
106             tnl_match_fmt(&tnl_port->match, &ds);
107             VLOG_WARN("%s: attempting to add tunnel port with same config as "
108                       "port '%s' (%s)", tnl_port_get_name(tnl_port),
109                       tnl_port_get_name(existing_port), ds_cstr(&ds));
110             ds_destroy(&ds);
111             free(tnl_port);
112         }
113         return &void_tnl_port;
114     }
115
116     hmap_insert(&tnl_match_map, &tnl_port->match_node,
117                 tnl_hash(&tnl_port->match));
118     tnl_port_mod_log(tnl_port, "adding");
119     return tnl_port;
120 }
121
122 /* Adds 'ofport' to the module with datapath port number 'odp_port'. 'ofport's
123  * must be added before they can be used by the module. 'ofport' must be a
124  * tunnel. */
125 struct tnl_port *
126 tnl_port_add(const struct ofport *ofport, uint32_t odp_port)
127 {
128     return tnl_port_add__(ofport, odp_port, true);
129 }
130
131 /* Checks if the tnl_port pointed to by 'tnl_portp' needs reconfiguration due
132  * to changes in its netdev_tunnel_config.  If it does, updates 'tnl_portp' to
133  * point to a new tnl_port and returns true.  Otherwise, returns false.
134  * 'ofport' and 'odp_port' should be the same as would be passed to
135  * tnl_port_add(). */
136 bool
137 tnl_port_reconfigure(const struct ofport *ofport, uint32_t odp_port,
138                      struct tnl_port **tnl_portp)
139 {
140     struct tnl_port *tnl_port = *tnl_portp;
141
142     if (tnl_port == &void_tnl_port) {
143         *tnl_portp = tnl_port_add__(ofport, odp_port, false);
144         return *tnl_portp != &void_tnl_port;
145     } else if (tnl_port->ofport != ofport
146                || tnl_port->match.odp_port != odp_port
147                || tnl_port->netdev_seq != netdev_change_seq(ofport->netdev)) {
148         VLOG_DBG("reconfiguring %s", tnl_port_get_name(tnl_port));
149         tnl_port_del(tnl_port);
150         *tnl_portp = tnl_port_add(ofport, odp_port);
151         return true;
152     }
153     return false;
154 }
155
156 /* Removes 'tnl_port' from the module. */
157 void
158 tnl_port_del(struct tnl_port *tnl_port)
159 {
160     if (tnl_port && tnl_port != &void_tnl_port) {
161         tnl_port_mod_log(tnl_port, "removing");
162         hmap_remove(&tnl_match_map, &tnl_port->match_node);
163         free(tnl_port);
164     }
165 }
166
167 /* Transforms 'flow' so that it appears to have been received by a tunnel
168  * OpenFlow port controlled by this module instead of the datapath port it
169  * actually came in on.  Sets 'flow''s in_port to the appropriate OpenFlow port
170  * number.  Returns the 'ofport' corresponding to the new in_port.
171  *
172  * Callers should verify that 'flow' needs to be received by calling
173  * tnl_port_should_receive() before this function.
174  *
175  * Leaves 'flow' untouched and returns null if unsuccessful. */
176 const struct ofport *
177 tnl_port_receive(struct flow *flow)
178 {
179     char *pre_flow_str = NULL;
180     struct tnl_port *tnl_port;
181     struct tnl_match match;
182
183     memset(&match, 0, sizeof match);
184     match.odp_port = flow->in_port;
185     match.ip_src = flow->tunnel.ip_dst;
186     match.ip_dst = flow->tunnel.ip_src;
187     match.in_key = flow->tunnel.tun_id;
188     match.skb_mark = flow->skb_mark;
189
190     tnl_port = tnl_find(&match);
191     if (!tnl_port) {
192         struct ds ds = DS_EMPTY_INITIALIZER;
193
194         tnl_match_fmt(&match, &ds);
195         VLOG_WARN_RL(&rl, "receive tunnel port not found (%s)", ds_cstr(&ds));
196         ds_destroy(&ds);
197         return NULL;
198     }
199
200     if (!VLOG_DROP_DBG(&dbg_rl)) {
201         pre_flow_str = flow_to_string(flow);
202     }
203
204     flow->in_port = tnl_port->ofport->ofp_port;
205     memset(&flow->tunnel, 0, sizeof flow->tunnel);
206     flow->tunnel.tun_id = match.in_key;
207
208     if (pre_flow_str) {
209         char *post_flow_str = flow_to_string(flow);
210         char *tnl_str = tnl_port_fmt(tnl_port);
211         VLOG_DBG("flow received\n"
212                  "%s"
213                  " pre: %s\n"
214                  "post: %s",
215                  tnl_str, pre_flow_str, post_flow_str);
216         free(tnl_str);
217         free(pre_flow_str);
218         free(post_flow_str);
219     }
220     return tnl_port->ofport;
221 }
222
223 /* Given that 'flow' should be output to the ofport corresponding to
224  * 'tnl_port', updates 'flow''s tunnel headers and returns the actual datapath
225  * port that the output should happen on.  May return OVSP_NONE if the output
226  * shouldn't occur. */
227 uint32_t
228 tnl_port_send(const struct tnl_port *tnl_port, struct flow *flow)
229 {
230     const struct netdev_tunnel_config *cfg;
231     char *pre_flow_str = NULL;
232
233     if (tnl_port == &void_tnl_port) {
234         return OVSP_NONE;
235     }
236
237     cfg = netdev_get_tunnel_config(tnl_port->ofport->netdev);
238     ovs_assert(cfg);
239
240     if (!VLOG_DROP_DBG(&dbg_rl)) {
241         pre_flow_str = flow_to_string(flow);
242     }
243
244     flow->tunnel.ip_src = tnl_port->match.ip_src;
245     flow->tunnel.ip_dst = tnl_port->match.ip_dst;
246     flow->skb_mark = tnl_port->match.skb_mark;
247
248     if (!cfg->out_key_flow) {
249         flow->tunnel.tun_id = cfg->out_key;
250     }
251
252     if (cfg->ttl_inherit && is_ip_any(flow)) {
253         flow->tunnel.ip_ttl = flow->nw_ttl;
254     } else {
255         flow->tunnel.ip_ttl = cfg->ttl;
256     }
257
258     if (cfg->tos_inherit && is_ip_any(flow)) {
259         flow->tunnel.ip_tos = flow->nw_tos & IP_DSCP_MASK;
260     } else {
261         flow->tunnel.ip_tos = cfg->tos;
262     }
263
264     if ((flow->nw_tos & IP_ECN_MASK) == IP_ECN_CE) {
265         flow->tunnel.ip_tos |= IP_ECN_ECT_0;
266     } else {
267         flow->tunnel.ip_tos |= flow->nw_tos & IP_ECN_MASK;
268     }
269
270     flow->tunnel.flags = (cfg->dont_fragment ? FLOW_TNL_F_DONT_FRAGMENT : 0)
271         | (cfg->csum ? FLOW_TNL_F_CSUM : 0)
272         | (cfg->out_key_present ? FLOW_TNL_F_KEY : 0);
273
274     if (pre_flow_str) {
275         char *post_flow_str = flow_to_string(flow);
276         char *tnl_str = tnl_port_fmt(tnl_port);
277         VLOG_DBG("flow sent\n"
278                  "%s"
279                  " pre: %s\n"
280                  "post: %s",
281                  tnl_str, pre_flow_str, post_flow_str);
282         free(tnl_str);
283         free(pre_flow_str);
284         free(post_flow_str);
285     }
286
287     return tnl_port->match.odp_port;
288 }
289
290 static uint32_t
291 tnl_hash(struct tnl_match *match)
292 {
293     BUILD_ASSERT_DECL(sizeof *match % sizeof(uint32_t) == 0);
294     return hash_words((uint32_t *) match, sizeof *match / sizeof(uint32_t), 0);
295 }
296
297 static struct tnl_port *
298 tnl_find_exact(struct tnl_match *match)
299 {
300     struct tnl_port *tnl_port;
301
302     HMAP_FOR_EACH_WITH_HASH (tnl_port, match_node, tnl_hash(match),
303                              &tnl_match_map) {
304         if (!memcmp(match, &tnl_port->match, sizeof *match)) {
305             return tnl_port;
306         }
307     }
308     return NULL;
309 }
310
311 static struct tnl_port *
312 tnl_find(struct tnl_match *match_)
313 {
314     struct tnl_match match = *match_;
315     struct tnl_port *tnl_port;
316
317     /* remote_ip, local_ip, in_key */
318     tnl_port = tnl_find_exact(&match);
319     if (tnl_port) {
320         return tnl_port;
321     }
322
323     /* remote_ip, in_key */
324     match.ip_src = 0;
325     tnl_port = tnl_find_exact(&match);
326     if (tnl_port) {
327         return tnl_port;
328     }
329     match.ip_src = match_->ip_src;
330
331     /* remote_ip, local_ip */
332     match.in_key = 0;
333     match.in_key_flow = true;
334     tnl_port = tnl_find_exact(&match);
335     if (tnl_port) {
336         return tnl_port;
337     }
338
339     /* remote_ip */
340     match.ip_src = 0;
341     tnl_port = tnl_find_exact(&match);
342     if (tnl_port) {
343         return tnl_port;
344     }
345
346     return NULL;
347 }
348
349 static void
350 tnl_match_fmt(const struct tnl_match *match, struct ds *ds)
351 {
352     ds_put_format(ds, IP_FMT"->"IP_FMT, IP_ARGS(match->ip_src),
353                   IP_ARGS(match->ip_dst));
354
355     if (match->in_key_flow) {
356         ds_put_cstr(ds, ", key=flow");
357     } else {
358         ds_put_format(ds, ", key=%#"PRIx64, ntohll(match->in_key));
359     }
360
361     ds_put_format(ds, ", dp port=%"PRIu32, match->odp_port);
362     ds_put_format(ds, ", skb mark=%"PRIu32, match->skb_mark);
363 }
364
365 static void
366 tnl_port_mod_log(const struct tnl_port *tnl_port, const char *action)
367 {
368     if (VLOG_IS_DBG_ENABLED()) {
369         struct ds ds = DS_EMPTY_INITIALIZER;
370
371         tnl_match_fmt(&tnl_port->match, &ds);
372         VLOG_INFO("%s tunnel port %s (%s)", action,
373                   tnl_port_get_name(tnl_port), ds_cstr(&ds));
374         ds_destroy(&ds);
375     }
376 }
377
378 static char *
379 tnl_port_fmt(const struct tnl_port *tnl_port)
380 {
381     const struct netdev_tunnel_config *cfg =
382         netdev_get_tunnel_config(tnl_port->ofport->netdev);
383     struct ds ds = DS_EMPTY_INITIALIZER;
384
385     ds_put_format(&ds, "port %"PRIu32": %s (%s: ", tnl_port->match.odp_port,
386                   tnl_port_get_name(tnl_port),
387                   netdev_get_type(tnl_port->ofport->netdev));
388     tnl_match_fmt(&tnl_port->match, &ds);
389
390     if (cfg->out_key != cfg->in_key ||
391         cfg->out_key_present != cfg->in_key_present ||
392         cfg->out_key_flow != cfg->in_key_flow) {
393         ds_put_cstr(&ds, ", out_key=");
394         if (!cfg->out_key_present) {
395             ds_put_cstr(&ds, "none");
396         } else if (cfg->out_key_flow) {
397             ds_put_cstr(&ds, "flow");
398         } else {
399             ds_put_format(&ds, "%#"PRIx64, ntohll(cfg->out_key));
400         }
401     }
402
403     if (cfg->ttl_inherit) {
404         ds_put_cstr(&ds, ", ttl=inherit");
405     } else {
406         ds_put_format(&ds, ", ttl=%"PRIu8, cfg->ttl);
407     }
408
409     if (cfg->tos_inherit) {
410         ds_put_cstr(&ds, ", tos=inherit");
411     } else if (cfg->tos) {
412         ds_put_format(&ds, ", tos=%#"PRIx8, cfg->tos);
413     }
414
415     if (!cfg->dont_fragment) {
416         ds_put_cstr(&ds, ", df=false");
417     }
418
419     if (cfg->csum) {
420         ds_put_cstr(&ds, ", csum=true");
421     }
422
423     ds_put_cstr(&ds, ")\n");
424
425     return ds_steal_cstr(&ds);
426 }
427
428 static const char *
429 tnl_port_get_name(const struct tnl_port *tnl_port)
430 {
431     return netdev_get_name(tnl_port->ofport->netdev);
432 }