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