ipoib_vlan.c 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  1. /*
  2. * Copyright (c) 2004 Topspin Communications. All rights reserved.
  3. *
  4. * This software is available to you under a choice of one of two
  5. * licenses. You may choose to be licensed under the terms of the GNU
  6. * General Public License (GPL) Version 2, available from the file
  7. * COPYING in the main directory of this source tree, or the
  8. * OpenIB.org BSD license below:
  9. *
  10. * Redistribution and use in source and binary forms, with or
  11. * without modification, are permitted provided that the following
  12. * conditions are met:
  13. *
  14. * - Redistributions of source code must retain the above
  15. * copyright notice, this list of conditions and the following
  16. * disclaimer.
  17. *
  18. * - Redistributions in binary form must reproduce the above
  19. * copyright notice, this list of conditions and the following
  20. * disclaimer in the documentation and/or other materials
  21. * provided with the distribution.
  22. *
  23. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  24. * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  25. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  26. * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
  27. * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
  28. * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  29. * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  30. * SOFTWARE.
  31. */
  32. #include <linux/module.h>
  33. #include <linux/init.h>
  34. #include <linux/seq_file.h>
  35. #include <asm/uaccess.h>
  36. #include "ipoib.h"
  37. static ssize_t show_parent(struct device *d, struct device_attribute *attr,
  38. char *buf)
  39. {
  40. struct net_device *dev = to_net_dev(d);
  41. struct ipoib_dev_priv *priv = netdev_priv(dev);
  42. return sprintf(buf, "%s\n", priv->parent->name);
  43. }
  44. static DEVICE_ATTR(parent, S_IRUGO, show_parent, NULL);
  45. int __ipoib_vlan_add(struct ipoib_dev_priv *ppriv, struct ipoib_dev_priv *priv,
  46. u16 pkey, int type)
  47. {
  48. int result;
  49. priv->max_ib_mtu = ppriv->max_ib_mtu;
  50. /* MTU will be reset when mcast join happens */
  51. priv->dev->mtu = IPOIB_UD_MTU(priv->max_ib_mtu);
  52. priv->mcast_mtu = priv->admin_mtu = priv->dev->mtu;
  53. priv->parent = ppriv->dev;
  54. set_bit(IPOIB_FLAG_SUBINTERFACE, &priv->flags);
  55. result = ipoib_set_dev_features(priv, ppriv->ca);
  56. if (result)
  57. goto err;
  58. priv->pkey = pkey;
  59. memcpy(priv->dev->dev_addr, ppriv->dev->dev_addr, INFINIBAND_ALEN);
  60. memcpy(&priv->local_gid, &ppriv->local_gid, sizeof(priv->local_gid));
  61. set_bit(IPOIB_FLAG_DEV_ADDR_SET, &priv->flags);
  62. priv->dev->broadcast[8] = pkey >> 8;
  63. priv->dev->broadcast[9] = pkey & 0xff;
  64. result = ipoib_dev_init(priv->dev, ppriv->ca, ppriv->port);
  65. if (result < 0) {
  66. ipoib_warn(ppriv, "failed to initialize subinterface: "
  67. "device %s, port %d",
  68. ppriv->ca->name, ppriv->port);
  69. goto err;
  70. }
  71. result = register_netdevice(priv->dev);
  72. if (result) {
  73. ipoib_warn(priv, "failed to initialize; error %i", result);
  74. goto register_failed;
  75. }
  76. ipoib_create_debug_files(priv->dev);
  77. /* RTNL childs don't need proprietary sysfs entries */
  78. if (type == IPOIB_LEGACY_CHILD) {
  79. if (ipoib_cm_add_mode_attr(priv->dev))
  80. goto sysfs_failed;
  81. if (ipoib_add_pkey_attr(priv->dev))
  82. goto sysfs_failed;
  83. if (ipoib_add_umcast_attr(priv->dev))
  84. goto sysfs_failed;
  85. if (device_create_file(&priv->dev->dev, &dev_attr_parent))
  86. goto sysfs_failed;
  87. }
  88. priv->child_type = type;
  89. list_add_tail(&priv->list, &ppriv->child_intfs);
  90. return 0;
  91. sysfs_failed:
  92. result = -ENOMEM;
  93. ipoib_delete_debug_files(priv->dev);
  94. unregister_netdevice(priv->dev);
  95. register_failed:
  96. ipoib_dev_cleanup(priv->dev);
  97. err:
  98. return result;
  99. }
  100. int ipoib_vlan_add(struct net_device *pdev, unsigned short pkey)
  101. {
  102. struct ipoib_dev_priv *ppriv, *priv;
  103. char intf_name[IFNAMSIZ];
  104. struct ipoib_dev_priv *tpriv;
  105. int result;
  106. if (!capable(CAP_NET_ADMIN))
  107. return -EPERM;
  108. ppriv = netdev_priv(pdev);
  109. if (test_bit(IPOIB_FLAG_GOING_DOWN, &ppriv->flags))
  110. return -EPERM;
  111. snprintf(intf_name, sizeof intf_name, "%s.%04x",
  112. ppriv->dev->name, pkey);
  113. priv = ipoib_intf_alloc(intf_name);
  114. if (!priv)
  115. return -ENOMEM;
  116. if (!rtnl_trylock())
  117. return restart_syscall();
  118. down_write(&ppriv->vlan_rwsem);
  119. /*
  120. * First ensure this isn't a duplicate. We check the parent device and
  121. * then all of the legacy child interfaces to make sure the Pkey
  122. * doesn't match.
  123. */
  124. if (ppriv->pkey == pkey) {
  125. result = -ENOTUNIQ;
  126. goto out;
  127. }
  128. list_for_each_entry(tpriv, &ppriv->child_intfs, list) {
  129. if (tpriv->pkey == pkey &&
  130. tpriv->child_type == IPOIB_LEGACY_CHILD) {
  131. result = -ENOTUNIQ;
  132. goto out;
  133. }
  134. }
  135. result = __ipoib_vlan_add(ppriv, priv, pkey, IPOIB_LEGACY_CHILD);
  136. out:
  137. up_write(&ppriv->vlan_rwsem);
  138. if (result)
  139. free_netdev(priv->dev);
  140. rtnl_unlock();
  141. return result;
  142. }
  143. int ipoib_vlan_delete(struct net_device *pdev, unsigned short pkey)
  144. {
  145. struct ipoib_dev_priv *ppriv, *priv, *tpriv;
  146. struct net_device *dev = NULL;
  147. if (!capable(CAP_NET_ADMIN))
  148. return -EPERM;
  149. ppriv = netdev_priv(pdev);
  150. if (test_bit(IPOIB_FLAG_GOING_DOWN, &ppriv->flags))
  151. return -EPERM;
  152. if (!rtnl_trylock())
  153. return restart_syscall();
  154. down_write(&ppriv->vlan_rwsem);
  155. list_for_each_entry_safe(priv, tpriv, &ppriv->child_intfs, list) {
  156. if (priv->pkey == pkey &&
  157. priv->child_type == IPOIB_LEGACY_CHILD) {
  158. unregister_netdevice(priv->dev);
  159. list_del(&priv->list);
  160. dev = priv->dev;
  161. break;
  162. }
  163. }
  164. up_write(&ppriv->vlan_rwsem);
  165. rtnl_unlock();
  166. if (dev) {
  167. free_netdev(dev);
  168. return 0;
  169. }
  170. return -ENODEV;
  171. }