vport-gre.c 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. /*
  2. * Copyright (c) 2007-2014 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. #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
  19. #include <linux/if.h>
  20. #include <linux/skbuff.h>
  21. #include <linux/ip.h>
  22. #include <linux/if_tunnel.h>
  23. #include <linux/if_vlan.h>
  24. #include <linux/in.h>
  25. #include <linux/in_route.h>
  26. #include <linux/inetdevice.h>
  27. #include <linux/jhash.h>
  28. #include <linux/list.h>
  29. #include <linux/kernel.h>
  30. #include <linux/module.h>
  31. #include <linux/workqueue.h>
  32. #include <linux/rculist.h>
  33. #include <net/route.h>
  34. #include <net/xfrm.h>
  35. #include <net/icmp.h>
  36. #include <net/ip.h>
  37. #include <net/ip_tunnels.h>
  38. #include <net/gre.h>
  39. #include <net/net_namespace.h>
  40. #include <net/netns/generic.h>
  41. #include <net/protocol.h>
  42. #include "datapath.h"
  43. #include "vport.h"
  44. #include "vport-netdev.h"
  45. static struct vport_ops ovs_gre_vport_ops;
  46. static struct vport *gre_tnl_create(const struct vport_parms *parms)
  47. {
  48. struct net *net = ovs_dp_get_net(parms->dp);
  49. struct net_device *dev;
  50. struct vport *vport;
  51. vport = ovs_vport_alloc(0, &ovs_gre_vport_ops, parms);
  52. if (IS_ERR(vport))
  53. return vport;
  54. rtnl_lock();
  55. dev = gretap_fb_dev_create(net, parms->name, NET_NAME_USER);
  56. if (IS_ERR(dev)) {
  57. rtnl_unlock();
  58. ovs_vport_free(vport);
  59. return ERR_CAST(dev);
  60. }
  61. dev_change_flags(dev, dev->flags | IFF_UP);
  62. rtnl_unlock();
  63. return vport;
  64. }
  65. static struct vport *gre_create(const struct vport_parms *parms)
  66. {
  67. struct vport *vport;
  68. vport = gre_tnl_create(parms);
  69. if (IS_ERR(vport))
  70. return vport;
  71. return ovs_netdev_link(vport, parms->name);
  72. }
  73. static struct vport_ops ovs_gre_vport_ops = {
  74. .type = OVS_VPORT_TYPE_GRE,
  75. .create = gre_create,
  76. .send = dev_queue_xmit,
  77. .destroy = ovs_netdev_tunnel_destroy,
  78. };
  79. static int __init ovs_gre_tnl_init(void)
  80. {
  81. return ovs_vport_ops_register(&ovs_gre_vport_ops);
  82. }
  83. static void __exit ovs_gre_tnl_exit(void)
  84. {
  85. ovs_vport_ops_unregister(&ovs_gre_vport_ops);
  86. }
  87. module_init(ovs_gre_tnl_init);
  88. module_exit(ovs_gre_tnl_exit);
  89. MODULE_DESCRIPTION("OVS: GRE switching port");
  90. MODULE_LICENSE("GPL");
  91. MODULE_ALIAS("vport-type-3");