datapath: Kill VPORT_F_TUN_ID vport flag.
[sliver-openvswitch.git] / datapath / tunnel.h
1 /*
2  * Copyright (c) 2007-2012 Nicira, Inc.
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of version 2 of the GNU General Public
6  * License as published by the Free Software Foundation.
7  *
8  * This program is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11  * General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License
14  * along with this program; if not, write to the Free Software
15  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
16  * 02110-1301, USA
17  */
18
19 #ifndef TUNNEL_H
20 #define TUNNEL_H 1
21
22 #include <linux/version.h>
23 #include <net/net_namespace.h>
24 #include <net/netns/generic.h>
25
26 #include "flow.h"
27 #include "vport.h"
28
29
30 int ovs_tnl_send(struct vport *vport, struct sk_buff *skb,
31                  u8 ipproto, int tunnel_hlen,
32                  void (*build_header)(const struct vport *,
33                                       struct sk_buff *,
34                                       int tunnel_hlen));
35
36 void ovs_tnl_rcv(struct vport *vport, struct sk_buff *skb,
37                  struct ovs_key_ipv4_tunnel *tun_key);
38 u16 ovs_tnl_get_src_port(struct sk_buff *skb);
39
40 static inline void tnl_tun_key_init(struct ovs_key_ipv4_tunnel *tun_key,
41                                     const struct iphdr *iph, __be64 tun_id, u32 tun_flags)
42 {
43         tun_key->tun_id = tun_id;
44         tun_key->ipv4_src = iph->saddr;
45         tun_key->ipv4_dst = iph->daddr;
46         tun_key->ipv4_tos = iph->tos;
47         tun_key->ipv4_ttl = iph->ttl;
48         tun_key->tun_flags = tun_flags;
49
50         /* clear struct padding. */
51         memset((unsigned char*) tun_key + OVS_TUNNEL_KEY_SIZE, 0,
52                sizeof(*tun_key) - OVS_TUNNEL_KEY_SIZE);
53 }
54
55 #endif /* tunnel.h */