fc_ns.h 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
  2. /*
  3. * Copyright(c) 2007 Intel Corporation. All rights reserved.
  4. *
  5. * This program is free software; you can redistribute it and/or modify it
  6. * under the terms and conditions of the GNU General Public License,
  7. * version 2, as published by the Free Software Foundation.
  8. *
  9. * This program is distributed in the hope it will be useful, but WITHOUT
  10. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  12. * more details.
  13. *
  14. * You should have received a copy of the GNU General Public License along with
  15. * this program; if not, write to the Free Software Foundation, Inc.,
  16. * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
  17. *
  18. * Maintained at www.Open-FCoE.org
  19. */
  20. #ifndef _FC_NS_H_
  21. #define _FC_NS_H_
  22. #include <linux/types.h>
  23. /*
  24. * Fibre Channel Services - Name Service (dNS)
  25. * From T11.org FC-GS-2 Rev 5.3 November 1998.
  26. */
  27. /*
  28. * Common-transport sub-type for Name Server.
  29. */
  30. #define FC_NS_SUBTYPE 2 /* fs_ct_hdr.ct_fs_subtype */
  31. /*
  32. * Name server Requests.
  33. * Note: this is an incomplete list, some unused requests are omitted.
  34. */
  35. enum fc_ns_req {
  36. FC_NS_GA_NXT = 0x0100, /* get all next */
  37. FC_NS_GI_A = 0x0101, /* get identifiers - scope */
  38. FC_NS_GPN_ID = 0x0112, /* get port name by ID */
  39. FC_NS_GNN_ID = 0x0113, /* get node name by ID */
  40. FC_NS_GSPN_ID = 0x0118, /* get symbolic port name */
  41. FC_NS_GID_PN = 0x0121, /* get ID for port name */
  42. FC_NS_GID_NN = 0x0131, /* get IDs for node name */
  43. FC_NS_GID_FT = 0x0171, /* get IDs by FC4 type */
  44. FC_NS_GPN_FT = 0x0172, /* get port names by FC4 type */
  45. FC_NS_GID_PT = 0x01a1, /* get IDs by port type */
  46. FC_NS_RPN_ID = 0x0212, /* reg port name for ID */
  47. FC_NS_RNN_ID = 0x0213, /* reg node name for ID */
  48. FC_NS_RFT_ID = 0x0217, /* reg FC4 type for ID */
  49. FC_NS_RSPN_ID = 0x0218, /* reg symbolic port name */
  50. FC_NS_RFF_ID = 0x021f, /* reg FC4 Features for ID */
  51. FC_NS_RSNN_NN = 0x0239, /* reg symbolic node name */
  52. };
  53. /*
  54. * Port type values.
  55. */
  56. enum fc_ns_pt {
  57. FC_NS_UNID_PORT = 0x00, /* unidentified */
  58. FC_NS_N_PORT = 0x01, /* N port */
  59. FC_NS_NL_PORT = 0x02, /* NL port */
  60. FC_NS_FNL_PORT = 0x03, /* F/NL port */
  61. FC_NS_NX_PORT = 0x7f, /* Nx port */
  62. FC_NS_F_PORT = 0x81, /* F port */
  63. FC_NS_FL_PORT = 0x82, /* FL port */
  64. FC_NS_E_PORT = 0x84, /* E port */
  65. FC_NS_B_PORT = 0x85, /* B port */
  66. };
  67. /*
  68. * Port type object.
  69. */
  70. struct fc_ns_pt_obj {
  71. __u8 pt_type;
  72. };
  73. /*
  74. * Port ID object
  75. */
  76. struct fc_ns_fid {
  77. __u8 fp_flags; /* flags for responses only */
  78. __u8 fp_fid[3];
  79. };
  80. /*
  81. * fp_flags in port ID object, for responses only.
  82. */
  83. #define FC_NS_FID_LAST 0x80 /* last object */
  84. /*
  85. * FC4-types object.
  86. */
  87. #define FC_NS_TYPES 256 /* number of possible FC-4 types */
  88. #define FC_NS_BPW 32 /* bits per word in bitmap */
  89. struct fc_ns_fts {
  90. __be32 ff_type_map[FC_NS_TYPES / FC_NS_BPW]; /* bitmap of FC-4 types */
  91. };
  92. /*
  93. * FC4-features object.
  94. */
  95. struct fc_ns_ff {
  96. __be32 fd_feat[FC_NS_TYPES * 4 / FC_NS_BPW]; /* 4-bits per FC-type */
  97. };
  98. /*
  99. * GID_PT request.
  100. */
  101. struct fc_ns_gid_pt {
  102. __u8 fn_pt_type;
  103. __u8 fn_domain_id_scope;
  104. __u8 fn_area_id_scope;
  105. __u8 fn_resvd;
  106. };
  107. /*
  108. * GID_FT or GPN_FT request.
  109. */
  110. struct fc_ns_gid_ft {
  111. __u8 fn_resvd;
  112. __u8 fn_domain_id_scope;
  113. __u8 fn_area_id_scope;
  114. __u8 fn_fc4_type;
  115. };
  116. /*
  117. * GPN_FT response.
  118. */
  119. struct fc_gpn_ft_resp {
  120. __u8 fp_flags; /* see fp_flags definitions above */
  121. __u8 fp_fid[3]; /* port ID */
  122. __be32 fp_resvd;
  123. __be64 fp_wwpn; /* port name */
  124. };
  125. /*
  126. * GID_PN request
  127. */
  128. struct fc_ns_gid_pn {
  129. __be64 fn_wwpn; /* port name */
  130. };
  131. /*
  132. * GID_PN response or GSPN_ID request
  133. */
  134. struct fc_gid_pn_resp {
  135. __u8 fp_resvd;
  136. __u8 fp_fid[3]; /* port ID */
  137. };
  138. /*
  139. * GSPN_ID response
  140. */
  141. struct fc_gspn_resp {
  142. __u8 fp_name_len;
  143. char fp_name[];
  144. };
  145. /*
  146. * RFT_ID request - register FC-4 types for ID.
  147. */
  148. struct fc_ns_rft_id {
  149. struct fc_ns_fid fr_fid; /* port ID object */
  150. struct fc_ns_fts fr_fts; /* FC-4 types object */
  151. };
  152. /*
  153. * RPN_ID request - register port name for ID.
  154. * RNN_ID request - register node name for ID.
  155. */
  156. struct fc_ns_rn_id {
  157. struct fc_ns_fid fr_fid; /* port ID object */
  158. __be64 fr_wwn; /* node name or port name */
  159. } __attribute__((__packed__));
  160. /*
  161. * RSNN_NN request - register symbolic node name
  162. */
  163. struct fc_ns_rsnn {
  164. __be64 fr_wwn; /* node name */
  165. __u8 fr_name_len;
  166. char fr_name[];
  167. } __attribute__((__packed__));
  168. /*
  169. * RSPN_ID request - register symbolic port name
  170. */
  171. struct fc_ns_rspn {
  172. struct fc_ns_fid fr_fid; /* port ID object */
  173. __u8 fr_name_len;
  174. char fr_name[];
  175. } __attribute__((__packed__));
  176. /*
  177. * RFF_ID request - register FC-4 Features for ID.
  178. */
  179. struct fc_ns_rff_id {
  180. struct fc_ns_fid fr_fid; /* port ID object */
  181. __u8 fr_resvd[2];
  182. __u8 fr_feat; /* FC-4 Feature bits */
  183. __u8 fr_type; /* FC-4 type */
  184. } __attribute__((__packed__));
  185. #endif /* _FC_NS_H_ */