Pravin B Shelar | aa31070 | 2013-06-17 17:50:33 -0700 | [diff] [blame] | 1 | /* |
Pravin B Shelar | 8c8b1b8 | 2014-09-15 19:28:44 -0700 | [diff] [blame] | 2 | * Copyright (c) 2007-2014 Nicira, Inc. |
Pravin B Shelar | aa31070 | 2013-06-17 17:50:33 -0700 | [diff] [blame] | 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 | |
Pravin B Shelar | aa31070 | 2013-06-17 17:50:33 -0700 | [diff] [blame] | 19 | #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 Shelar | aa31070 | 2013-06-17 17:50:33 -0700 | [diff] [blame] | 27 | #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 Graf | 62b9c8d | 2014-10-22 17:29:06 +0200 | [diff] [blame] | 32 | #include <linux/module.h> |
Pravin B Shelar | aa31070 | 2013-06-17 17:50:33 -0700 | [diff] [blame] | 33 | #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 Shelar | b2acd1d | 2015-08-07 23:51:47 -0700 | [diff] [blame] | 48 | #include "vport-netdev.h" |
Pravin B Shelar | aa31070 | 2013-06-17 17:50:33 -0700 | [diff] [blame] | 49 | |
Thomas Graf | 62b9c8d | 2014-10-22 17:29:06 +0200 | [diff] [blame] | 50 | static struct vport_ops ovs_gre_vport_ops; |
| 51 | |
Pravin B Shelar | b2acd1d | 2015-08-07 23:51:47 -0700 | [diff] [blame] | 52 | static struct vport *gre_tnl_create(const struct vport_parms *parms) |
Pravin B Shelar | aa31070 | 2013-06-17 17:50:33 -0700 | [diff] [blame] | 53 | { |
Pravin B Shelar | b2acd1d | 2015-08-07 23:51:47 -0700 | [diff] [blame] | 54 | struct net *net = ovs_dp_get_net(parms->dp); |
| 55 | struct net_device *dev; |
Wei Zhang | e0bb8c4 | 2014-06-28 12:34:53 -0700 | [diff] [blame] | 56 | struct vport *vport; |
Martynas Pumputis | 4b5b9ba | 2016-08-09 16:24:50 +0100 | [diff] [blame] | 57 | int err; |
Wei Zhang | e0bb8c4 | 2014-06-28 12:34:53 -0700 | [diff] [blame] | 58 | |
Pravin B Shelar | b2acd1d | 2015-08-07 23:51:47 -0700 | [diff] [blame] | 59 | vport = ovs_vport_alloc(0, &ovs_gre_vport_ops, parms); |
| 60 | if (IS_ERR(vport)) |
| 61 | return vport; |
Wei Zhang | e0bb8c4 | 2014-06-28 12:34:53 -0700 | [diff] [blame] | 62 | |
Pravin B Shelar | b2acd1d | 2015-08-07 23:51:47 -0700 | [diff] [blame] | 63 | rtnl_lock(); |
| 64 | dev = gretap_fb_dev_create(net, parms->name, NET_NAME_USER); |
| 65 | if (IS_ERR(dev)) { |
| 66 | rtnl_unlock(); |
| 67 | ovs_vport_free(vport); |
| 68 | return ERR_CAST(dev); |
Pravin B Shelar | aa31070 | 2013-06-17 17:50:33 -0700 | [diff] [blame] | 69 | } |
| 70 | |
Martynas Pumputis | 4b5b9ba | 2016-08-09 16:24:50 +0100 | [diff] [blame] | 71 | err = dev_change_flags(dev, dev->flags | IFF_UP); |
| 72 | if (err < 0) { |
| 73 | rtnl_delete_link(dev); |
| 74 | rtnl_unlock(); |
| 75 | ovs_vport_free(vport); |
| 76 | return ERR_PTR(err); |
| 77 | } |
Pravin B Shelar | aa31070 | 2013-06-17 17:50:33 -0700 | [diff] [blame] | 78 | |
Martynas Pumputis | 4b5b9ba | 2016-08-09 16:24:50 +0100 | [diff] [blame] | 79 | rtnl_unlock(); |
Pravin B Shelar | b2acd1d | 2015-08-07 23:51:47 -0700 | [diff] [blame] | 80 | return vport; |
Pravin B Shelar | aa31070 | 2013-06-17 17:50:33 -0700 | [diff] [blame] | 81 | } |
| 82 | |
| 83 | static struct vport *gre_create(const struct vport_parms *parms) |
| 84 | { |
Pravin B Shelar | aa31070 | 2013-06-17 17:50:33 -0700 | [diff] [blame] | 85 | struct vport *vport; |
Pravin B Shelar | aa31070 | 2013-06-17 17:50:33 -0700 | [diff] [blame] | 86 | |
Pravin B Shelar | b2acd1d | 2015-08-07 23:51:47 -0700 | [diff] [blame] | 87 | vport = gre_tnl_create(parms); |
Pravin B Shelar | aa31070 | 2013-06-17 17:50:33 -0700 | [diff] [blame] | 88 | if (IS_ERR(vport)) |
Pravin B Shelar | b2acd1d | 2015-08-07 23:51:47 -0700 | [diff] [blame] | 89 | return vport; |
Pravin B Shelar | aa31070 | 2013-06-17 17:50:33 -0700 | [diff] [blame] | 90 | |
Pravin B Shelar | b2acd1d | 2015-08-07 23:51:47 -0700 | [diff] [blame] | 91 | return ovs_netdev_link(vport, parms->name); |
Pravin B Shelar | aa31070 | 2013-06-17 17:50:33 -0700 | [diff] [blame] | 92 | } |
| 93 | |
Thomas Graf | 62b9c8d | 2014-10-22 17:29:06 +0200 | [diff] [blame] | 94 | static struct vport_ops ovs_gre_vport_ops = { |
Pravin B Shelar | aa31070 | 2013-06-17 17:50:33 -0700 | [diff] [blame] | 95 | .type = OVS_VPORT_TYPE_GRE, |
| 96 | .create = gre_create, |
Pravin B Shelar | aec1592 | 2015-10-20 23:00:10 -0700 | [diff] [blame] | 97 | .send = dev_queue_xmit, |
Pravin B Shelar | b2acd1d | 2015-08-07 23:51:47 -0700 | [diff] [blame] | 98 | .destroy = ovs_netdev_tunnel_destroy, |
Pravin B Shelar | aa31070 | 2013-06-17 17:50:33 -0700 | [diff] [blame] | 99 | }; |
Thomas Graf | 62b9c8d | 2014-10-22 17:29:06 +0200 | [diff] [blame] | 100 | |
| 101 | static int __init ovs_gre_tnl_init(void) |
| 102 | { |
| 103 | return ovs_vport_ops_register(&ovs_gre_vport_ops); |
| 104 | } |
| 105 | |
| 106 | static void __exit ovs_gre_tnl_exit(void) |
| 107 | { |
| 108 | ovs_vport_ops_unregister(&ovs_gre_vport_ops); |
| 109 | } |
| 110 | |
| 111 | module_init(ovs_gre_tnl_init); |
| 112 | module_exit(ovs_gre_tnl_exit); |
| 113 | |
| 114 | MODULE_DESCRIPTION("OVS: GRE switching port"); |
| 115 | MODULE_LICENSE("GPL"); |
| 116 | MODULE_ALIAS("vport-type-3"); |