ipsec: unset IPSEC_MARK flag from skb_mark after tunnel packet is decapsulated
[sliver-openvswitch.git] / ofproto / tunnel.h
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
16 #ifndef TUNNEL_H
17 #define TUNNEL_H 1
18
19 #include <stdbool.h>
20 #include <stdint.h>
21 #include "flow.h"
22
23 /* skb mark used for IPsec tunnel packets */
24 #define IPSEC_MARK 1
25
26 /* Tunnel port emulation layer.
27  *
28  * These functions emulate tunnel virtual ports based on the outer
29  * header information from the kernel. */
30
31 struct ofport;
32 struct tnl_port;
33
34 bool tnl_port_reconfigure(const struct ofport *, uint32_t odp_port,
35                           struct tnl_port **);
36
37 struct tnl_port *tnl_port_add(const struct ofport *, uint32_t odp_port);
38 void tnl_port_del(struct tnl_port *);
39
40 const struct ofport *tnl_port_receive(struct flow *);
41 uint32_t tnl_port_send(const struct tnl_port *, struct flow *);
42
43 /* Returns true if 'flow' should be submitted to tnl_port_receive(). */
44 static inline bool
45 tnl_port_should_receive(const struct flow *flow)
46 {
47     return flow->tunnel.ip_dst != 0;
48 }
49
50 #endif /* tunnel.h */