blob: 7f8897f33a67fe6512436aff86c43098c15e3445 [file] [log] [blame]
Pravin B Shelaraa310702013-06-17 17:50:33 -07001/*
Pravin B Shelar8c8b1b82014-09-15 19:28:44 -07002 * Copyright (c) 2007-2014 Nicira, Inc.
Pravin B Shelaraa310702013-06-17 17:50:33 -07003 *
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
Pravin B Shelaraa310702013-06-17 17:50:33 -070019#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
20
21#include <linux/if.h>
22#include <linux/skbuff.h>
23#include <linux/ip.h>
24#include <linux/if_tunnel.h>
25#include <linux/if_vlan.h>
26#include <linux/in.h>
Pravin B Shelaraa310702013-06-17 17:50:33 -070027#include <linux/in_route.h>
28#include <linux/inetdevice.h>
29#include <linux/jhash.h>
30#include <linux/list.h>
31#include <linux/kernel.h>
Thomas Graf62b9c8d2014-10-22 17:29:06 +020032#include <linux/module.h>
Pravin B Shelaraa310702013-06-17 17:50:33 -070033#include <linux/workqueue.h>
34#include <linux/rculist.h>
35#include <net/route.h>
36#include <net/xfrm.h>
37
38#include <net/icmp.h>
39#include <net/ip.h>
40#include <net/ip_tunnels.h>
41#include <net/gre.h>
42#include <net/net_namespace.h>
43#include <net/netns/generic.h>
44#include <net/protocol.h>
45
46#include "datapath.h"
47#include "vport.h"
Pravin B Shelarb2acd1d2015-08-07 23:51:47 -070048#include "vport-netdev.h"
Pravin B Shelaraa310702013-06-17 17:50:33 -070049
Thomas Graf62b9c8d2014-10-22 17:29:06 +020050static struct vport_ops ovs_gre_vport_ops;
51
Pravin B Shelarb2acd1d2015-08-07 23:51:47 -070052static struct vport *gre_tnl_create(const struct vport_parms *parms)
Pravin B Shelaraa310702013-06-17 17:50:33 -070053{
Pravin B Shelarb2acd1d2015-08-07 23:51:47 -070054 struct net *net = ovs_dp_get_net(parms->dp);
55 struct net_device *dev;
Wei Zhange0bb8c42014-06-28 12:34:53 -070056 struct vport *vport;
57
Pravin B Shelarb2acd1d2015-08-07 23:51:47 -070058 vport = ovs_vport_alloc(0, &ovs_gre_vport_ops, parms);
59 if (IS_ERR(vport))
60 return vport;
Wei Zhange0bb8c42014-06-28 12:34:53 -070061
Pravin B Shelarb2acd1d2015-08-07 23:51:47 -070062 rtnl_lock();
63 dev = gretap_fb_dev_create(net, parms->name, NET_NAME_USER);
64 if (IS_ERR(dev)) {
65 rtnl_unlock();
66 ovs_vport_free(vport);
67 return ERR_CAST(dev);
Pravin B Shelaraa310702013-06-17 17:50:33 -070068 }
69
Pravin B Shelarb2acd1d2015-08-07 23:51:47 -070070 dev_change_flags(dev, dev->flags | IFF_UP);
71 rtnl_unlock();
Pravin B Shelaraa310702013-06-17 17:50:33 -070072
Pravin B Shelarb2acd1d2015-08-07 23:51:47 -070073 return vport;
Pravin B Shelaraa310702013-06-17 17:50:33 -070074}
75
76static struct vport *gre_create(const struct vport_parms *parms)
77{
Pravin B Shelaraa310702013-06-17 17:50:33 -070078 struct vport *vport;
Pravin B Shelaraa310702013-06-17 17:50:33 -070079
Pravin B Shelarb2acd1d2015-08-07 23:51:47 -070080 vport = gre_tnl_create(parms);
Pravin B Shelaraa310702013-06-17 17:50:33 -070081 if (IS_ERR(vport))
Pravin B Shelarb2acd1d2015-08-07 23:51:47 -070082 return vport;
Pravin B Shelaraa310702013-06-17 17:50:33 -070083
Pravin B Shelarb2acd1d2015-08-07 23:51:47 -070084 return ovs_netdev_link(vport, parms->name);
Pravin B Shelaraa310702013-06-17 17:50:33 -070085}
86
Thomas Graf62b9c8d2014-10-22 17:29:06 +020087static struct vport_ops ovs_gre_vport_ops = {
Pravin B Shelaraa310702013-06-17 17:50:33 -070088 .type = OVS_VPORT_TYPE_GRE,
89 .create = gre_create,
Pravin B Shelaraec15922015-10-20 23:00:10 -070090 .send = dev_queue_xmit,
Pravin B Shelarb2acd1d2015-08-07 23:51:47 -070091 .destroy = ovs_netdev_tunnel_destroy,
Pravin B Shelaraa310702013-06-17 17:50:33 -070092};
Thomas Graf62b9c8d2014-10-22 17:29:06 +020093
94static int __init ovs_gre_tnl_init(void)
95{
96 return ovs_vport_ops_register(&ovs_gre_vport_ops);
97}
98
99static void __exit ovs_gre_tnl_exit(void)
100{
101 ovs_vport_ops_unregister(&ovs_gre_vport_ops);
102}
103
104module_init(ovs_gre_tnl_init);
105module_exit(ovs_gre_tnl_exit);
106
107MODULE_DESCRIPTION("OVS: GRE switching port");
108MODULE_LICENSE("GPL");
109MODULE_ALIAS("vport-type-3");