Linux Audio

Check our new training course

Loading...
v5.9
  1/* SPDX-License-Identifier: GPL-2.0-only */
  2/*
  3 * Copyright(c) 2008 Intel Corporation. All rights reserved.
 
 
 
 
 
 
 
 
 
 
 
 
 
  4 *
  5 * Maintained at www.Open-FCoE.org
  6 */
  7
  8#ifndef _FC_ENCODE_H_
  9#define _FC_ENCODE_H_
 10#include <asm/unaligned.h>
 11#include <linux/utsname.h>
 12
 13/*
 14 * F_CTL values for simple requests and responses.
 15 */
 16#define FC_FCTL_REQ	(FC_FC_FIRST_SEQ | FC_FC_END_SEQ | FC_FC_SEQ_INIT)
 17#define FC_FCTL_RESP	(FC_FC_EX_CTX | FC_FC_LAST_SEQ | \
 18			FC_FC_END_SEQ | FC_FC_SEQ_INIT)
 19
 20struct fc_ns_rft {
 21	struct fc_ns_fid fid;	/* port ID object */
 22	struct fc_ns_fts fts;	/* FC4-types object */
 23};
 24
 25struct fc_ct_req {
 26	struct fc_ct_hdr hdr;
 27	union {
 28		struct fc_ns_gid_ft gid;
 29		struct fc_ns_rn_id  rn;
 30		struct fc_ns_rft rft;
 31		struct fc_ns_rff_id rff;
 32		struct fc_ns_fid fid;
 33		struct fc_ns_rsnn snn;
 34		struct fc_ns_rspn spn;
 35		struct fc_fdmi_rhba rhba;
 36		struct fc_fdmi_rpa  rpa;
 37		struct fc_fdmi_dprt dprt;
 38		struct fc_fdmi_dhba dhba;
 39	} payload;
 40};
 41
 42static inline void __fc_fill_fc_hdr(struct fc_frame_header *fh,
 43				    enum fc_rctl r_ctl,
 44				    u32 did, u32 sid, enum fc_fh_type type,
 45				    u32 f_ctl, u32 parm_offset)
 46{
 47	WARN_ON(r_ctl == 0);
 48	fh->fh_r_ctl = r_ctl;
 49	hton24(fh->fh_d_id, did);
 50	hton24(fh->fh_s_id, sid);
 51	fh->fh_type = type;
 52	hton24(fh->fh_f_ctl, f_ctl);
 53	fh->fh_cs_ctl = 0;
 54	fh->fh_df_ctl = 0;
 55	fh->fh_parm_offset = htonl(parm_offset);
 56}
 57
 58/**
 59 * fill FC header fields in specified fc_frame
 60 */
 61static inline void fc_fill_fc_hdr(struct fc_frame *fp, enum fc_rctl r_ctl,
 62				  u32 did, u32 sid, enum fc_fh_type type,
 63				  u32 f_ctl, u32 parm_offset)
 64{
 65	struct fc_frame_header *fh;
 66
 67	fh = fc_frame_header_get(fp);
 68	__fc_fill_fc_hdr(fh, r_ctl, did, sid, type, f_ctl, parm_offset);
 69}
 70
 71/**
 72 * fc_adisc_fill() - Fill in adisc request frame
 73 * @lport: local port.
 74 * @fp: fc frame where payload will be placed.
 75 */
 76static inline void fc_adisc_fill(struct fc_lport *lport, struct fc_frame *fp)
 77{
 78	struct fc_els_adisc *adisc;
 79
 80	adisc = fc_frame_payload_get(fp, sizeof(*adisc));
 81	memset(adisc, 0, sizeof(*adisc));
 82	adisc->adisc_cmd = ELS_ADISC;
 83	put_unaligned_be64(lport->wwpn, &adisc->adisc_wwpn);
 84	put_unaligned_be64(lport->wwnn, &adisc->adisc_wwnn);
 85	hton24(adisc->adisc_port_id, lport->port_id);
 86}
 87
 88/**
 89 * fc_ct_hdr_fill- fills ct header and reset ct payload
 90 * returns pointer to ct request.
 91 */
 92static inline struct fc_ct_req *fc_ct_hdr_fill(const struct fc_frame *fp,
 93					       unsigned int op, size_t req_size,
 94					       enum fc_ct_fs_type fs_type,
 95					       u8 subtype)
 96{
 97	struct fc_ct_req *ct;
 98	size_t ct_plen;
 99
100	ct_plen  = sizeof(struct fc_ct_hdr) + req_size;
101	ct = fc_frame_payload_get(fp, ct_plen);
102	memset(ct, 0, ct_plen);
103	ct->hdr.ct_rev = FC_CT_REV;
104	ct->hdr.ct_fs_type = fs_type;
105	ct->hdr.ct_fs_subtype = subtype;
106	ct->hdr.ct_cmd = htons((u16) op);
107	return ct;
108}
109
110/**
111 * fc_ct_ns_fill() - Fill in a name service request frame
112 * @lport: local port.
113 * @fc_id: FC_ID of non-destination rport for GPN_ID and similar inquiries.
114 * @fp: frame to contain payload.
115 * @op: CT opcode.
116 * @r_ctl: pointer to FC header R_CTL.
117 * @fh_type: pointer to FC-4 type.
118 */
119static inline int fc_ct_ns_fill(struct fc_lport *lport,
120		      u32 fc_id, struct fc_frame *fp,
121		      unsigned int op, enum fc_rctl *r_ctl,
122		      enum fc_fh_type *fh_type)
123{
124	struct fc_ct_req *ct;
125	size_t len;
126
127	switch (op) {
128	case FC_NS_GPN_FT:
129		ct = fc_ct_hdr_fill(fp, op, sizeof(struct fc_ns_gid_ft),
130				    FC_FST_DIR, FC_NS_SUBTYPE);
131		ct->payload.gid.fn_fc4_type = FC_TYPE_FCP;
132		break;
133
134	case FC_NS_GPN_ID:
135		ct = fc_ct_hdr_fill(fp, op, sizeof(struct fc_ns_fid),
136				    FC_FST_DIR, FC_NS_SUBTYPE);
137		ct->payload.gid.fn_fc4_type = FC_TYPE_FCP;
138		hton24(ct->payload.fid.fp_fid, fc_id);
139		break;
140
141	case FC_NS_RFT_ID:
142		ct = fc_ct_hdr_fill(fp, op, sizeof(struct fc_ns_rft),
143				    FC_FST_DIR, FC_NS_SUBTYPE);
144		hton24(ct->payload.rft.fid.fp_fid, lport->port_id);
145		ct->payload.rft.fts = lport->fcts;
146		break;
147
148	case FC_NS_RFF_ID:
149		ct = fc_ct_hdr_fill(fp, op, sizeof(struct fc_ns_rff_id),
150				    FC_FST_DIR, FC_NS_SUBTYPE);
151		hton24(ct->payload.rff.fr_fid.fp_fid, lport->port_id);
152		ct->payload.rff.fr_type = FC_TYPE_FCP;
153		if (lport->service_params & FCP_SPPF_INIT_FCN)
154			ct->payload.rff.fr_feat = FCP_FEAT_INIT;
155		if (lport->service_params & FCP_SPPF_TARG_FCN)
156			ct->payload.rff.fr_feat |= FCP_FEAT_TARG;
157		break;
158
159	case FC_NS_RNN_ID:
160		ct = fc_ct_hdr_fill(fp, op, sizeof(struct fc_ns_rn_id),
161				    FC_FST_DIR, FC_NS_SUBTYPE);
162		hton24(ct->payload.rn.fr_fid.fp_fid, lport->port_id);
163		put_unaligned_be64(lport->wwnn, &ct->payload.rn.fr_wwn);
164		break;
165
166	case FC_NS_RSPN_ID:
167		len = strnlen(fc_host_symbolic_name(lport->host), 255);
168		ct = fc_ct_hdr_fill(fp, op, sizeof(struct fc_ns_rspn) + len,
169				    FC_FST_DIR, FC_NS_SUBTYPE);
170		hton24(ct->payload.spn.fr_fid.fp_fid, lport->port_id);
171		strncpy(ct->payload.spn.fr_name,
172			fc_host_symbolic_name(lport->host), len);
173		ct->payload.spn.fr_name_len = len;
174		break;
175
176	case FC_NS_RSNN_NN:
177		len = strnlen(fc_host_symbolic_name(lport->host), 255);
178		ct = fc_ct_hdr_fill(fp, op, sizeof(struct fc_ns_rsnn) + len,
179				    FC_FST_DIR, FC_NS_SUBTYPE);
180		put_unaligned_be64(lport->wwnn, &ct->payload.snn.fr_wwn);
181		strncpy(ct->payload.snn.fr_name,
182			fc_host_symbolic_name(lport->host), len);
183		ct->payload.snn.fr_name_len = len;
184		break;
185
186	default:
187		return -EINVAL;
188	}
189	*r_ctl = FC_RCTL_DD_UNSOL_CTL;
190	*fh_type = FC_TYPE_CT;
191	return 0;
192}
193
194/**
195 * fc_ct_ms_fill() - Fill in a mgmt service request frame
196 * @lport: local port.
197 * @fc_id: FC_ID of non-destination rport for GPN_ID and similar inquiries.
198 * @fp: frame to contain payload.
199 * @op: CT opcode.
200 * @r_ctl: pointer to FC header R_CTL.
201 * @fh_type: pointer to FC-4 type.
202 */
203static inline int fc_ct_ms_fill(struct fc_lport *lport,
204		      u32 fc_id, struct fc_frame *fp,
205		      unsigned int op, enum fc_rctl *r_ctl,
206		      enum fc_fh_type *fh_type)
207{
208	struct fc_ct_req *ct;
209	size_t len;
210	struct fc_fdmi_attr_entry *entry;
211	struct fs_fdmi_attrs *hba_attrs;
212	int numattrs = 0;
213
214	switch (op) {
215	case FC_FDMI_RHBA:
216		numattrs = 10;
217		len = sizeof(struct fc_fdmi_rhba);
218		len -= sizeof(struct fc_fdmi_attr_entry);
219		len += (numattrs * FC_FDMI_ATTR_ENTRY_HEADER_LEN);
220		len += FC_FDMI_HBA_ATTR_NODENAME_LEN;
221		len += FC_FDMI_HBA_ATTR_MANUFACTURER_LEN;
222		len += FC_FDMI_HBA_ATTR_SERIALNUMBER_LEN;
223		len += FC_FDMI_HBA_ATTR_MODEL_LEN;
224		len += FC_FDMI_HBA_ATTR_MODELDESCR_LEN;
225		len += FC_FDMI_HBA_ATTR_HARDWAREVERSION_LEN;
226		len += FC_FDMI_HBA_ATTR_DRIVERVERSION_LEN;
227		len += FC_FDMI_HBA_ATTR_OPTIONROMVERSION_LEN;
228		len += FC_FDMI_HBA_ATTR_FIRMWAREVERSION_LEN;
229		len += FC_FDMI_HBA_ATTR_OSNAMEVERSION_LEN;
230		ct = fc_ct_hdr_fill(fp, op, len, FC_FST_MGMT,
231				    FC_FDMI_SUBTYPE);
232
233		/* HBA Identifier */
234		put_unaligned_be64(lport->wwpn, &ct->payload.rhba.hbaid.id);
235		/* Number of Ports - always 1 */
236		put_unaligned_be32(1, &ct->payload.rhba.port.numport);
237		/* Port Name */
238		put_unaligned_be64(lport->wwpn,
239				   &ct->payload.rhba.port.port[0].portname);
240
241		/* HBA Attributes */
242		put_unaligned_be32(numattrs,
243				   &ct->payload.rhba.hba_attrs.numattrs);
244		hba_attrs = &ct->payload.rhba.hba_attrs;
245		entry = (struct fc_fdmi_attr_entry *)hba_attrs->attr;
246		/* NodeName*/
247		len = FC_FDMI_ATTR_ENTRY_HEADER_LEN;
248		len += FC_FDMI_HBA_ATTR_NODENAME_LEN;
249		put_unaligned_be16(FC_FDMI_HBA_ATTR_NODENAME,
250				   &entry->type);
251		put_unaligned_be16(len, &entry->len);
252		put_unaligned_be64(lport->wwnn,
253				   (__be64 *)&entry->value[0]);
254
255		/* Manufacturer */
256		entry = (struct fc_fdmi_attr_entry *)((char *)entry->value +
257					FC_FDMI_HBA_ATTR_NODENAME_LEN);
258		len = FC_FDMI_ATTR_ENTRY_HEADER_LEN;
259		len += FC_FDMI_HBA_ATTR_MANUFACTURER_LEN;
260		put_unaligned_be16(FC_FDMI_HBA_ATTR_MANUFACTURER,
261				   &entry->type);
262		put_unaligned_be16(len, &entry->len);
263		strncpy((char *)&entry->value,
264			fc_host_manufacturer(lport->host),
265			FC_FDMI_HBA_ATTR_MANUFACTURER_LEN);
266
267		/* SerialNumber */
268		entry = (struct fc_fdmi_attr_entry *)((char *)entry->value +
269					FC_FDMI_HBA_ATTR_MANUFACTURER_LEN);
270		len = FC_FDMI_ATTR_ENTRY_HEADER_LEN;
271		len += FC_FDMI_HBA_ATTR_SERIALNUMBER_LEN;
272		put_unaligned_be16(FC_FDMI_HBA_ATTR_SERIALNUMBER,
273				   &entry->type);
274		put_unaligned_be16(len, &entry->len);
275		strncpy((char *)&entry->value,
276			fc_host_serial_number(lport->host),
277			FC_FDMI_HBA_ATTR_SERIALNUMBER_LEN);
278
279		/* Model */
280		entry = (struct fc_fdmi_attr_entry *)((char *)entry->value +
281					FC_FDMI_HBA_ATTR_SERIALNUMBER_LEN);
282		len = FC_FDMI_ATTR_ENTRY_HEADER_LEN;
283		len += FC_FDMI_HBA_ATTR_MODEL_LEN;
284		put_unaligned_be16(FC_FDMI_HBA_ATTR_MODEL,
285				   &entry->type);
286		put_unaligned_be16(len, &entry->len);
287		strncpy((char *)&entry->value,
288			fc_host_model(lport->host),
289			FC_FDMI_HBA_ATTR_MODEL_LEN);
290
291		/* Model Description */
292		entry = (struct fc_fdmi_attr_entry *)((char *)entry->value +
293					FC_FDMI_HBA_ATTR_MODEL_LEN);
294		len = FC_FDMI_ATTR_ENTRY_HEADER_LEN;
295		len += FC_FDMI_HBA_ATTR_MODELDESCR_LEN;
296		put_unaligned_be16(FC_FDMI_HBA_ATTR_MODELDESCRIPTION,
297				   &entry->type);
298		put_unaligned_be16(len, &entry->len);
299		strncpy((char *)&entry->value,
300			fc_host_model_description(lport->host),
301			FC_FDMI_HBA_ATTR_MODELDESCR_LEN);
302
303		/* Hardware Version */
304		entry = (struct fc_fdmi_attr_entry *)((char *)entry->value +
305					FC_FDMI_HBA_ATTR_MODELDESCR_LEN);
306		len = FC_FDMI_ATTR_ENTRY_HEADER_LEN;
307		len += FC_FDMI_HBA_ATTR_HARDWAREVERSION_LEN;
308		put_unaligned_be16(FC_FDMI_HBA_ATTR_HARDWAREVERSION,
309				   &entry->type);
310		put_unaligned_be16(len, &entry->len);
311		strncpy((char *)&entry->value,
312			fc_host_hardware_version(lport->host),
313			FC_FDMI_HBA_ATTR_HARDWAREVERSION_LEN);
314
315		/* Driver Version */
316		entry = (struct fc_fdmi_attr_entry *)((char *)entry->value +
317					FC_FDMI_HBA_ATTR_HARDWAREVERSION_LEN);
318		len = FC_FDMI_ATTR_ENTRY_HEADER_LEN;
319		len += FC_FDMI_HBA_ATTR_DRIVERVERSION_LEN;
320		put_unaligned_be16(FC_FDMI_HBA_ATTR_DRIVERVERSION,
321				   &entry->type);
322		put_unaligned_be16(len, &entry->len);
323		strncpy((char *)&entry->value,
324			fc_host_driver_version(lport->host),
325			FC_FDMI_HBA_ATTR_DRIVERVERSION_LEN);
326
327		/* OptionROM Version */
328		entry = (struct fc_fdmi_attr_entry *)((char *)entry->value +
329					FC_FDMI_HBA_ATTR_DRIVERVERSION_LEN);
330		len = FC_FDMI_ATTR_ENTRY_HEADER_LEN;
331		len += FC_FDMI_HBA_ATTR_OPTIONROMVERSION_LEN;
332		put_unaligned_be16(FC_FDMI_HBA_ATTR_OPTIONROMVERSION,
333				   &entry->type);
334		put_unaligned_be16(len, &entry->len);
335		strncpy((char *)&entry->value,
336			fc_host_optionrom_version(lport->host),
337			FC_FDMI_HBA_ATTR_OPTIONROMVERSION_LEN);
338
339		/* Firmware Version */
340		entry = (struct fc_fdmi_attr_entry *)((char *)entry->value +
341					FC_FDMI_HBA_ATTR_OPTIONROMVERSION_LEN);
342		len = FC_FDMI_ATTR_ENTRY_HEADER_LEN;
343		len += FC_FDMI_HBA_ATTR_FIRMWAREVERSION_LEN;
344		put_unaligned_be16(FC_FDMI_HBA_ATTR_FIRMWAREVERSION,
345				   &entry->type);
346		put_unaligned_be16(len, &entry->len);
347		strncpy((char *)&entry->value,
348			fc_host_firmware_version(lport->host),
349			FC_FDMI_HBA_ATTR_FIRMWAREVERSION_LEN);
350
351		/* OS Name and Version */
352		entry = (struct fc_fdmi_attr_entry *)((char *)entry->value +
353					FC_FDMI_HBA_ATTR_FIRMWAREVERSION_LEN);
354		len = FC_FDMI_ATTR_ENTRY_HEADER_LEN;
355		len += FC_FDMI_HBA_ATTR_OSNAMEVERSION_LEN;
356		put_unaligned_be16(FC_FDMI_HBA_ATTR_OSNAMEVERSION,
357				   &entry->type);
358		put_unaligned_be16(len, &entry->len);
359		snprintf((char *)&entry->value,
360			FC_FDMI_HBA_ATTR_OSNAMEVERSION_LEN,
361			"%s v%s",
362			init_utsname()->sysname,
363			init_utsname()->release);
364		break;
365	case FC_FDMI_RPA:
366		numattrs = 6;
367		len = sizeof(struct fc_fdmi_rpa);
368		len -= sizeof(struct fc_fdmi_attr_entry);
369		len += (numattrs * FC_FDMI_ATTR_ENTRY_HEADER_LEN);
370		len += FC_FDMI_PORT_ATTR_FC4TYPES_LEN;
371		len += FC_FDMI_PORT_ATTR_SUPPORTEDSPEED_LEN;
372		len += FC_FDMI_PORT_ATTR_CURRENTPORTSPEED_LEN;
373		len += FC_FDMI_PORT_ATTR_MAXFRAMESIZE_LEN;
374		len += FC_FDMI_PORT_ATTR_OSDEVICENAME_LEN;
375		len += FC_FDMI_PORT_ATTR_HOSTNAME_LEN;
376		ct = fc_ct_hdr_fill(fp, op, len, FC_FST_MGMT,
377				    FC_FDMI_SUBTYPE);
378
379		/* Port Name */
380		put_unaligned_be64(lport->wwpn,
381				   &ct->payload.rpa.port.portname);
382
383		/* Port Attributes */
384		put_unaligned_be32(numattrs,
385				   &ct->payload.rpa.hba_attrs.numattrs);
386
387		hba_attrs = &ct->payload.rpa.hba_attrs;
388		entry = (struct fc_fdmi_attr_entry *)hba_attrs->attr;
389
390		/* FC4 types */
391		len = FC_FDMI_ATTR_ENTRY_HEADER_LEN;
392		len += FC_FDMI_PORT_ATTR_FC4TYPES_LEN;
393		put_unaligned_be16(FC_FDMI_PORT_ATTR_FC4TYPES,
394				   &entry->type);
395		put_unaligned_be16(len, &entry->len);
396		memcpy(&entry->value, fc_host_supported_fc4s(lport->host),
397		       FC_FDMI_PORT_ATTR_FC4TYPES_LEN);
398
399		/* Supported Speed */
400		entry = (struct fc_fdmi_attr_entry *)((char *)entry->value +
401					FC_FDMI_PORT_ATTR_FC4TYPES_LEN);
402		len = FC_FDMI_ATTR_ENTRY_HEADER_LEN;
403		len += FC_FDMI_PORT_ATTR_SUPPORTEDSPEED_LEN;
404		put_unaligned_be16(FC_FDMI_PORT_ATTR_SUPPORTEDSPEED,
405				   &entry->type);
406		put_unaligned_be16(len, &entry->len);
407
408		put_unaligned_be32(fc_host_supported_speeds(lport->host),
409				   &entry->value);
410
411		/* Current Port Speed */
412		entry = (struct fc_fdmi_attr_entry *)((char *)entry->value +
413					FC_FDMI_PORT_ATTR_SUPPORTEDSPEED_LEN);
414		len = FC_FDMI_ATTR_ENTRY_HEADER_LEN;
415		len += FC_FDMI_PORT_ATTR_CURRENTPORTSPEED_LEN;
416		put_unaligned_be16(FC_FDMI_PORT_ATTR_CURRENTPORTSPEED,
417				   &entry->type);
418		put_unaligned_be16(len, &entry->len);
419		put_unaligned_be32(lport->link_speed,
420				   &entry->value);
421
422		/* Max Frame Size */
423		entry = (struct fc_fdmi_attr_entry *)((char *)entry->value +
424					FC_FDMI_PORT_ATTR_CURRENTPORTSPEED_LEN);
425		len = FC_FDMI_ATTR_ENTRY_HEADER_LEN;
426		len += FC_FDMI_PORT_ATTR_MAXFRAMESIZE_LEN;
427		put_unaligned_be16(FC_FDMI_PORT_ATTR_MAXFRAMESIZE,
428				   &entry->type);
429		put_unaligned_be16(len, &entry->len);
430		put_unaligned_be32(fc_host_maxframe_size(lport->host),
431				   &entry->value);
432
433		/* OS Device Name */
434		entry = (struct fc_fdmi_attr_entry *)((char *)entry->value +
435					FC_FDMI_PORT_ATTR_MAXFRAMESIZE_LEN);
436		len = FC_FDMI_ATTR_ENTRY_HEADER_LEN;
437		len += FC_FDMI_PORT_ATTR_OSDEVICENAME_LEN;
438		put_unaligned_be16(FC_FDMI_PORT_ATTR_OSDEVICENAME,
439				   &entry->type);
440		put_unaligned_be16(len, &entry->len);
441		/* Use the sysfs device name */
442		strncpy((char *)&entry->value,
443			dev_name(&lport->host->shost_gendev),
444			strnlen(dev_name(&lport->host->shost_gendev),
445				FC_FDMI_PORT_ATTR_HOSTNAME_LEN));
446
447		/* Host Name */
448		entry = (struct fc_fdmi_attr_entry *)((char *)entry->value +
449					FC_FDMI_PORT_ATTR_OSDEVICENAME_LEN);
450		len = FC_FDMI_ATTR_ENTRY_HEADER_LEN;
451		len += FC_FDMI_PORT_ATTR_HOSTNAME_LEN;
452		put_unaligned_be16(FC_FDMI_PORT_ATTR_HOSTNAME,
453				   &entry->type);
454		put_unaligned_be16(len, &entry->len);
455		if (strlen(fc_host_system_hostname(lport->host)))
456			strncpy((char *)&entry->value,
457				fc_host_system_hostname(lport->host),
458				strnlen(fc_host_system_hostname(lport->host),
459					FC_FDMI_PORT_ATTR_HOSTNAME_LEN));
460		else
461			strncpy((char *)&entry->value,
462				init_utsname()->nodename,
463				FC_FDMI_PORT_ATTR_HOSTNAME_LEN);
464		break;
465	case FC_FDMI_DPRT:
466		len = sizeof(struct fc_fdmi_dprt);
467		ct = fc_ct_hdr_fill(fp, op, len, FC_FST_MGMT,
468				    FC_FDMI_SUBTYPE);
469		/* Port Name */
470		put_unaligned_be64(lport->wwpn,
471				   &ct->payload.dprt.port.portname);
472		break;
473	case FC_FDMI_DHBA:
474		len = sizeof(struct fc_fdmi_dhba);
475		ct = fc_ct_hdr_fill(fp, op, len, FC_FST_MGMT,
476				    FC_FDMI_SUBTYPE);
477		/* HBA Identifier */
478		put_unaligned_be64(lport->wwpn, &ct->payload.dhba.hbaid.id);
479		break;
480	default:
481		return -EINVAL;
482	}
483	*r_ctl = FC_RCTL_DD_UNSOL_CTL;
484	*fh_type = FC_TYPE_CT;
485	return 0;
486}
487
488/**
489 * fc_ct_fill() - Fill in a common transport service request frame
490 * @lport: local port.
491 * @fc_id: FC_ID of non-destination rport for GPN_ID and similar inquiries.
492 * @fp: frame to contain payload.
493 * @op: CT opcode.
494 * @r_ctl: pointer to FC header R_CTL.
495 * @fh_type: pointer to FC-4 type.
496 */
497static inline int fc_ct_fill(struct fc_lport *lport,
498		      u32 fc_id, struct fc_frame *fp,
499		      unsigned int op, enum fc_rctl *r_ctl,
500		      enum fc_fh_type *fh_type, u32 *did)
501{
502	int rc = -EINVAL;
503
504	switch (fc_id) {
505	case FC_FID_MGMT_SERV:
506		rc = fc_ct_ms_fill(lport, fc_id, fp, op, r_ctl, fh_type);
507		*did = FC_FID_MGMT_SERV;
508		break;
509	case FC_FID_DIR_SERV:
510	default:
511		rc = fc_ct_ns_fill(lport, fc_id, fp, op, r_ctl, fh_type);
512		*did = FC_FID_DIR_SERV;
513		break;
514	}
515
516	return rc;
517}
518/**
519 * fc_plogi_fill - Fill in plogi request frame
520 */
521static inline void fc_plogi_fill(struct fc_lport *lport, struct fc_frame *fp,
522				 unsigned int op)
523{
524	struct fc_els_flogi *plogi;
525	struct fc_els_csp *csp;
526	struct fc_els_cssp *cp;
527
528	plogi = fc_frame_payload_get(fp, sizeof(*plogi));
529	memset(plogi, 0, sizeof(*plogi));
530	plogi->fl_cmd = (u8) op;
531	put_unaligned_be64(lport->wwpn, &plogi->fl_wwpn);
532	put_unaligned_be64(lport->wwnn, &plogi->fl_wwnn);
533
534	csp = &plogi->fl_csp;
535	csp->sp_hi_ver = 0x20;
536	csp->sp_lo_ver = 0x20;
537	csp->sp_bb_cred = htons(10);	/* this gets set by gateway */
538	csp->sp_bb_data = htons((u16) lport->mfs);
539	cp = &plogi->fl_cssp[3 - 1];	/* class 3 parameters */
540	cp->cp_class = htons(FC_CPC_VALID | FC_CPC_SEQ);
541	csp->sp_features = htons(FC_SP_FT_CIRO);
542	csp->sp_tot_seq = htons(255);	/* seq. we accept */
543	csp->sp_rel_off = htons(0x1f);
544	csp->sp_e_d_tov = htonl(lport->e_d_tov);
545
546	cp->cp_rdfs = htons((u16) lport->mfs);
547	cp->cp_con_seq = htons(255);
548	cp->cp_open_seq = 1;
549}
550
551/**
552 * fc_flogi_fill - Fill in a flogi request frame.
553 */
554static inline void fc_flogi_fill(struct fc_lport *lport, struct fc_frame *fp)
555{
556	struct fc_els_csp *sp;
557	struct fc_els_cssp *cp;
558	struct fc_els_flogi *flogi;
559
560	flogi = fc_frame_payload_get(fp, sizeof(*flogi));
561	memset(flogi, 0, sizeof(*flogi));
562	flogi->fl_cmd = (u8) ELS_FLOGI;
563	put_unaligned_be64(lport->wwpn, &flogi->fl_wwpn);
564	put_unaligned_be64(lport->wwnn, &flogi->fl_wwnn);
565	sp = &flogi->fl_csp;
566	sp->sp_hi_ver = 0x20;
567	sp->sp_lo_ver = 0x20;
568	sp->sp_bb_cred = htons(10);	/* this gets set by gateway */
569	sp->sp_bb_data = htons((u16) lport->mfs);
570	cp = &flogi->fl_cssp[3 - 1];	/* class 3 parameters */
571	cp->cp_class = htons(FC_CPC_VALID | FC_CPC_SEQ);
572	if (lport->does_npiv)
573		sp->sp_features = htons(FC_SP_FT_NPIV);
574}
575
576/**
577 * fc_fdisc_fill - Fill in a fdisc request frame.
578 */
579static inline void fc_fdisc_fill(struct fc_lport *lport, struct fc_frame *fp)
580{
581	struct fc_els_csp *sp;
582	struct fc_els_cssp *cp;
583	struct fc_els_flogi *fdisc;
584
585	fdisc = fc_frame_payload_get(fp, sizeof(*fdisc));
586	memset(fdisc, 0, sizeof(*fdisc));
587	fdisc->fl_cmd = (u8) ELS_FDISC;
588	put_unaligned_be64(lport->wwpn, &fdisc->fl_wwpn);
589	put_unaligned_be64(lport->wwnn, &fdisc->fl_wwnn);
590	sp = &fdisc->fl_csp;
591	sp->sp_hi_ver = 0x20;
592	sp->sp_lo_ver = 0x20;
593	sp->sp_bb_cred = htons(10);	/* this gets set by gateway */
594	sp->sp_bb_data = htons((u16) lport->mfs);
595	cp = &fdisc->fl_cssp[3 - 1];	/* class 3 parameters */
596	cp->cp_class = htons(FC_CPC_VALID | FC_CPC_SEQ);
597}
598
599/**
600 * fc_logo_fill - Fill in a logo request frame.
601 */
602static inline void fc_logo_fill(struct fc_lport *lport, struct fc_frame *fp)
603{
604	struct fc_els_logo *logo;
605
606	logo = fc_frame_payload_get(fp, sizeof(*logo));
607	memset(logo, 0, sizeof(*logo));
608	logo->fl_cmd = ELS_LOGO;
609	hton24(logo->fl_n_port_id, lport->port_id);
610	logo->fl_n_port_wwn = htonll(lport->wwpn);
611}
612
613/**
614 * fc_rtv_fill - Fill in RTV (read timeout value) request frame.
615 */
616static inline void fc_rtv_fill(struct fc_lport *lport, struct fc_frame *fp)
617{
618	struct fc_els_rtv *rtv;
619
620	rtv = fc_frame_payload_get(fp, sizeof(*rtv));
621	memset(rtv, 0, sizeof(*rtv));
622	rtv->rtv_cmd = ELS_RTV;
623}
624
625/**
626 * fc_rec_fill - Fill in rec request frame
627 */
628static inline void fc_rec_fill(struct fc_lport *lport, struct fc_frame *fp)
629{
630	struct fc_els_rec *rec;
631	struct fc_exch *ep = fc_seq_exch(fr_seq(fp));
632
633	rec = fc_frame_payload_get(fp, sizeof(*rec));
634	memset(rec, 0, sizeof(*rec));
635	rec->rec_cmd = ELS_REC;
636	hton24(rec->rec_s_id, lport->port_id);
637	rec->rec_ox_id = htons(ep->oxid);
638	rec->rec_rx_id = htons(ep->rxid);
639}
640
641/**
642 * fc_prli_fill - Fill in prli request frame
643 */
644static inline void fc_prli_fill(struct fc_lport *lport, struct fc_frame *fp)
645{
646	struct {
647		struct fc_els_prli prli;
648		struct fc_els_spp spp;
649	} *pp;
650
651	pp = fc_frame_payload_get(fp, sizeof(*pp));
652	memset(pp, 0, sizeof(*pp));
653	pp->prli.prli_cmd = ELS_PRLI;
654	pp->prli.prli_spp_len = sizeof(struct fc_els_spp);
655	pp->prli.prli_len = htons(sizeof(*pp));
656	pp->spp.spp_type = FC_TYPE_FCP;
657	pp->spp.spp_flags = FC_SPP_EST_IMG_PAIR;
658	pp->spp.spp_params = htonl(lport->service_params);
659}
660
661/**
662 * fc_scr_fill - Fill in a scr request frame.
663 */
664static inline void fc_scr_fill(struct fc_lport *lport, struct fc_frame *fp)
665{
666	struct fc_els_scr *scr;
667
668	scr = fc_frame_payload_get(fp, sizeof(*scr));
669	memset(scr, 0, sizeof(*scr));
670	scr->scr_cmd = ELS_SCR;
671	scr->scr_reg_func = ELS_SCRF_FULL;
672}
673
674/**
675 * fc_els_fill - Fill in an ELS  request frame
676 */
677static inline int fc_els_fill(struct fc_lport *lport,
678		       u32 did,
679		       struct fc_frame *fp, unsigned int op,
680		       enum fc_rctl *r_ctl, enum fc_fh_type *fh_type)
681{
682	switch (op) {
683	case ELS_ADISC:
684		fc_adisc_fill(lport, fp);
685		break;
686
687	case ELS_PLOGI:
688		fc_plogi_fill(lport, fp, ELS_PLOGI);
689		break;
690
691	case ELS_FLOGI:
692		fc_flogi_fill(lport, fp);
693		break;
694
695	case ELS_FDISC:
696		fc_fdisc_fill(lport, fp);
697		break;
698
699	case ELS_LOGO:
700		fc_logo_fill(lport, fp);
701		break;
702
703	case ELS_RTV:
704		fc_rtv_fill(lport, fp);
705		break;
706
707	case ELS_REC:
708		fc_rec_fill(lport, fp);
709		break;
710
711	case ELS_PRLI:
712		fc_prli_fill(lport, fp);
713		break;
714
715	case ELS_SCR:
716		fc_scr_fill(lport, fp);
717		break;
718
719	default:
720		return -EINVAL;
721	}
722
723	*r_ctl = FC_RCTL_ELS_REQ;
724	*fh_type = FC_TYPE_ELS;
725	return 0;
726}
727#endif /* _FC_ENCODE_H_ */
v4.10.11
 
  1/*
  2 * Copyright(c) 2008 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_ENCODE_H_
 21#define _FC_ENCODE_H_
 22#include <asm/unaligned.h>
 23#include <linux/utsname.h>
 24
 25/*
 26 * F_CTL values for simple requests and responses.
 27 */
 28#define FC_FCTL_REQ	(FC_FC_FIRST_SEQ | FC_FC_END_SEQ | FC_FC_SEQ_INIT)
 29#define FC_FCTL_RESP	(FC_FC_EX_CTX | FC_FC_LAST_SEQ | \
 30			FC_FC_END_SEQ | FC_FC_SEQ_INIT)
 31
 32struct fc_ns_rft {
 33	struct fc_ns_fid fid;	/* port ID object */
 34	struct fc_ns_fts fts;	/* FC4-types object */
 35};
 36
 37struct fc_ct_req {
 38	struct fc_ct_hdr hdr;
 39	union {
 40		struct fc_ns_gid_ft gid;
 41		struct fc_ns_rn_id  rn;
 42		struct fc_ns_rft rft;
 43		struct fc_ns_rff_id rff;
 44		struct fc_ns_fid fid;
 45		struct fc_ns_rsnn snn;
 46		struct fc_ns_rspn spn;
 47		struct fc_fdmi_rhba rhba;
 48		struct fc_fdmi_rpa  rpa;
 49		struct fc_fdmi_dprt dprt;
 50		struct fc_fdmi_dhba dhba;
 51	} payload;
 52};
 53
 54static inline void __fc_fill_fc_hdr(struct fc_frame_header *fh,
 55				    enum fc_rctl r_ctl,
 56				    u32 did, u32 sid, enum fc_fh_type type,
 57				    u32 f_ctl, u32 parm_offset)
 58{
 59	WARN_ON(r_ctl == 0);
 60	fh->fh_r_ctl = r_ctl;
 61	hton24(fh->fh_d_id, did);
 62	hton24(fh->fh_s_id, sid);
 63	fh->fh_type = type;
 64	hton24(fh->fh_f_ctl, f_ctl);
 65	fh->fh_cs_ctl = 0;
 66	fh->fh_df_ctl = 0;
 67	fh->fh_parm_offset = htonl(parm_offset);
 68}
 69
 70/**
 71 * fill FC header fields in specified fc_frame
 72 */
 73static inline void fc_fill_fc_hdr(struct fc_frame *fp, enum fc_rctl r_ctl,
 74				  u32 did, u32 sid, enum fc_fh_type type,
 75				  u32 f_ctl, u32 parm_offset)
 76{
 77	struct fc_frame_header *fh;
 78
 79	fh = fc_frame_header_get(fp);
 80	__fc_fill_fc_hdr(fh, r_ctl, did, sid, type, f_ctl, parm_offset);
 81}
 82
 83/**
 84 * fc_adisc_fill() - Fill in adisc request frame
 85 * @lport: local port.
 86 * @fp: fc frame where payload will be placed.
 87 */
 88static inline void fc_adisc_fill(struct fc_lport *lport, struct fc_frame *fp)
 89{
 90	struct fc_els_adisc *adisc;
 91
 92	adisc = fc_frame_payload_get(fp, sizeof(*adisc));
 93	memset(adisc, 0, sizeof(*adisc));
 94	adisc->adisc_cmd = ELS_ADISC;
 95	put_unaligned_be64(lport->wwpn, &adisc->adisc_wwpn);
 96	put_unaligned_be64(lport->wwnn, &adisc->adisc_wwnn);
 97	hton24(adisc->adisc_port_id, lport->port_id);
 98}
 99
100/**
101 * fc_ct_hdr_fill- fills ct header and reset ct payload
102 * returns pointer to ct request.
103 */
104static inline struct fc_ct_req *fc_ct_hdr_fill(const struct fc_frame *fp,
105					       unsigned int op, size_t req_size,
106					       enum fc_ct_fs_type fs_type,
107					       u8 subtype)
108{
109	struct fc_ct_req *ct;
110	size_t ct_plen;
111
112	ct_plen  = sizeof(struct fc_ct_hdr) + req_size;
113	ct = fc_frame_payload_get(fp, ct_plen);
114	memset(ct, 0, ct_plen);
115	ct->hdr.ct_rev = FC_CT_REV;
116	ct->hdr.ct_fs_type = fs_type;
117	ct->hdr.ct_fs_subtype = subtype;
118	ct->hdr.ct_cmd = htons((u16) op);
119	return ct;
120}
121
122/**
123 * fc_ct_ns_fill() - Fill in a name service request frame
124 * @lport: local port.
125 * @fc_id: FC_ID of non-destination rport for GPN_ID and similar inquiries.
126 * @fp: frame to contain payload.
127 * @op: CT opcode.
128 * @r_ctl: pointer to FC header R_CTL.
129 * @fh_type: pointer to FC-4 type.
130 */
131static inline int fc_ct_ns_fill(struct fc_lport *lport,
132		      u32 fc_id, struct fc_frame *fp,
133		      unsigned int op, enum fc_rctl *r_ctl,
134		      enum fc_fh_type *fh_type)
135{
136	struct fc_ct_req *ct;
137	size_t len;
138
139	switch (op) {
140	case FC_NS_GPN_FT:
141		ct = fc_ct_hdr_fill(fp, op, sizeof(struct fc_ns_gid_ft),
142				    FC_FST_DIR, FC_NS_SUBTYPE);
143		ct->payload.gid.fn_fc4_type = FC_TYPE_FCP;
144		break;
145
146	case FC_NS_GPN_ID:
147		ct = fc_ct_hdr_fill(fp, op, sizeof(struct fc_ns_fid),
148				    FC_FST_DIR, FC_NS_SUBTYPE);
149		ct->payload.gid.fn_fc4_type = FC_TYPE_FCP;
150		hton24(ct->payload.fid.fp_fid, fc_id);
151		break;
152
153	case FC_NS_RFT_ID:
154		ct = fc_ct_hdr_fill(fp, op, sizeof(struct fc_ns_rft),
155				    FC_FST_DIR, FC_NS_SUBTYPE);
156		hton24(ct->payload.rft.fid.fp_fid, lport->port_id);
157		ct->payload.rft.fts = lport->fcts;
158		break;
159
160	case FC_NS_RFF_ID:
161		ct = fc_ct_hdr_fill(fp, op, sizeof(struct fc_ns_rff_id),
162				    FC_FST_DIR, FC_NS_SUBTYPE);
163		hton24(ct->payload.rff.fr_fid.fp_fid, lport->port_id);
164		ct->payload.rff.fr_type = FC_TYPE_FCP;
165		if (lport->service_params & FCP_SPPF_INIT_FCN)
166			ct->payload.rff.fr_feat = FCP_FEAT_INIT;
167		if (lport->service_params & FCP_SPPF_TARG_FCN)
168			ct->payload.rff.fr_feat |= FCP_FEAT_TARG;
169		break;
170
171	case FC_NS_RNN_ID:
172		ct = fc_ct_hdr_fill(fp, op, sizeof(struct fc_ns_rn_id),
173				    FC_FST_DIR, FC_NS_SUBTYPE);
174		hton24(ct->payload.rn.fr_fid.fp_fid, lport->port_id);
175		put_unaligned_be64(lport->wwnn, &ct->payload.rn.fr_wwn);
176		break;
177
178	case FC_NS_RSPN_ID:
179		len = strnlen(fc_host_symbolic_name(lport->host), 255);
180		ct = fc_ct_hdr_fill(fp, op, sizeof(struct fc_ns_rspn) + len,
181				    FC_FST_DIR, FC_NS_SUBTYPE);
182		hton24(ct->payload.spn.fr_fid.fp_fid, lport->port_id);
183		strncpy(ct->payload.spn.fr_name,
184			fc_host_symbolic_name(lport->host), len);
185		ct->payload.spn.fr_name_len = len;
186		break;
187
188	case FC_NS_RSNN_NN:
189		len = strnlen(fc_host_symbolic_name(lport->host), 255);
190		ct = fc_ct_hdr_fill(fp, op, sizeof(struct fc_ns_rsnn) + len,
191				    FC_FST_DIR, FC_NS_SUBTYPE);
192		put_unaligned_be64(lport->wwnn, &ct->payload.snn.fr_wwn);
193		strncpy(ct->payload.snn.fr_name,
194			fc_host_symbolic_name(lport->host), len);
195		ct->payload.snn.fr_name_len = len;
196		break;
197
198	default:
199		return -EINVAL;
200	}
201	*r_ctl = FC_RCTL_DD_UNSOL_CTL;
202	*fh_type = FC_TYPE_CT;
203	return 0;
204}
205
206/**
207 * fc_ct_ms_fill() - Fill in a mgmt service request frame
208 * @lport: local port.
209 * @fc_id: FC_ID of non-destination rport for GPN_ID and similar inquiries.
210 * @fp: frame to contain payload.
211 * @op: CT opcode.
212 * @r_ctl: pointer to FC header R_CTL.
213 * @fh_type: pointer to FC-4 type.
214 */
215static inline int fc_ct_ms_fill(struct fc_lport *lport,
216		      u32 fc_id, struct fc_frame *fp,
217		      unsigned int op, enum fc_rctl *r_ctl,
218		      enum fc_fh_type *fh_type)
219{
220	struct fc_ct_req *ct;
221	size_t len;
222	struct fc_fdmi_attr_entry *entry;
223	struct fs_fdmi_attrs *hba_attrs;
224	int numattrs = 0;
225
226	switch (op) {
227	case FC_FDMI_RHBA:
228		numattrs = 10;
229		len = sizeof(struct fc_fdmi_rhba);
230		len -= sizeof(struct fc_fdmi_attr_entry);
231		len += (numattrs * FC_FDMI_ATTR_ENTRY_HEADER_LEN);
232		len += FC_FDMI_HBA_ATTR_NODENAME_LEN;
233		len += FC_FDMI_HBA_ATTR_MANUFACTURER_LEN;
234		len += FC_FDMI_HBA_ATTR_SERIALNUMBER_LEN;
235		len += FC_FDMI_HBA_ATTR_MODEL_LEN;
236		len += FC_FDMI_HBA_ATTR_MODELDESCR_LEN;
237		len += FC_FDMI_HBA_ATTR_HARDWAREVERSION_LEN;
238		len += FC_FDMI_HBA_ATTR_DRIVERVERSION_LEN;
239		len += FC_FDMI_HBA_ATTR_OPTIONROMVERSION_LEN;
240		len += FC_FDMI_HBA_ATTR_FIRMWAREVERSION_LEN;
241		len += FC_FDMI_HBA_ATTR_OSNAMEVERSION_LEN;
242		ct = fc_ct_hdr_fill(fp, op, len, FC_FST_MGMT,
243				    FC_FDMI_SUBTYPE);
244
245		/* HBA Identifier */
246		put_unaligned_be64(lport->wwpn, &ct->payload.rhba.hbaid.id);
247		/* Number of Ports - always 1 */
248		put_unaligned_be32(1, &ct->payload.rhba.port.numport);
249		/* Port Name */
250		put_unaligned_be64(lport->wwpn,
251				   &ct->payload.rhba.port.port[0].portname);
252
253		/* HBA Attributes */
254		put_unaligned_be32(numattrs,
255				   &ct->payload.rhba.hba_attrs.numattrs);
256		hba_attrs = &ct->payload.rhba.hba_attrs;
257		entry = (struct fc_fdmi_attr_entry *)hba_attrs->attr;
258		/* NodeName*/
259		len = FC_FDMI_ATTR_ENTRY_HEADER_LEN;
260		len += FC_FDMI_HBA_ATTR_NODENAME_LEN;
261		put_unaligned_be16(FC_FDMI_HBA_ATTR_NODENAME,
262				   &entry->type);
263		put_unaligned_be16(len, &entry->len);
264		put_unaligned_be64(lport->wwnn,
265				   (__be64 *)&entry->value[0]);
266
267		/* Manufacturer */
268		entry = (struct fc_fdmi_attr_entry *)((char *)entry->value +
269					FC_FDMI_HBA_ATTR_NODENAME_LEN);
270		len = FC_FDMI_ATTR_ENTRY_HEADER_LEN;
271		len += FC_FDMI_HBA_ATTR_MANUFACTURER_LEN;
272		put_unaligned_be16(FC_FDMI_HBA_ATTR_MANUFACTURER,
273				   &entry->type);
274		put_unaligned_be16(len, &entry->len);
275		strncpy((char *)&entry->value,
276			fc_host_manufacturer(lport->host),
277			FC_FDMI_HBA_ATTR_MANUFACTURER_LEN);
278
279		/* SerialNumber */
280		entry = (struct fc_fdmi_attr_entry *)((char *)entry->value +
281					FC_FDMI_HBA_ATTR_MANUFACTURER_LEN);
282		len = FC_FDMI_ATTR_ENTRY_HEADER_LEN;
283		len += FC_FDMI_HBA_ATTR_SERIALNUMBER_LEN;
284		put_unaligned_be16(FC_FDMI_HBA_ATTR_SERIALNUMBER,
285				   &entry->type);
286		put_unaligned_be16(len, &entry->len);
287		strncpy((char *)&entry->value,
288			fc_host_serial_number(lport->host),
289			FC_FDMI_HBA_ATTR_SERIALNUMBER_LEN);
290
291		/* Model */
292		entry = (struct fc_fdmi_attr_entry *)((char *)entry->value +
293					FC_FDMI_HBA_ATTR_SERIALNUMBER_LEN);
294		len = FC_FDMI_ATTR_ENTRY_HEADER_LEN;
295		len += FC_FDMI_HBA_ATTR_MODEL_LEN;
296		put_unaligned_be16(FC_FDMI_HBA_ATTR_MODEL,
297				   &entry->type);
298		put_unaligned_be16(len, &entry->len);
299		strncpy((char *)&entry->value,
300			fc_host_model(lport->host),
301			FC_FDMI_HBA_ATTR_MODEL_LEN);
302
303		/* Model Description */
304		entry = (struct fc_fdmi_attr_entry *)((char *)entry->value +
305					FC_FDMI_HBA_ATTR_MODEL_LEN);
306		len = FC_FDMI_ATTR_ENTRY_HEADER_LEN;
307		len += FC_FDMI_HBA_ATTR_MODELDESCR_LEN;
308		put_unaligned_be16(FC_FDMI_HBA_ATTR_MODELDESCRIPTION,
309				   &entry->type);
310		put_unaligned_be16(len, &entry->len);
311		strncpy((char *)&entry->value,
312			fc_host_model_description(lport->host),
313			FC_FDMI_HBA_ATTR_MODELDESCR_LEN);
314
315		/* Hardware Version */
316		entry = (struct fc_fdmi_attr_entry *)((char *)entry->value +
317					FC_FDMI_HBA_ATTR_MODELDESCR_LEN);
318		len = FC_FDMI_ATTR_ENTRY_HEADER_LEN;
319		len += FC_FDMI_HBA_ATTR_HARDWAREVERSION_LEN;
320		put_unaligned_be16(FC_FDMI_HBA_ATTR_HARDWAREVERSION,
321				   &entry->type);
322		put_unaligned_be16(len, &entry->len);
323		strncpy((char *)&entry->value,
324			fc_host_hardware_version(lport->host),
325			FC_FDMI_HBA_ATTR_HARDWAREVERSION_LEN);
326
327		/* Driver Version */
328		entry = (struct fc_fdmi_attr_entry *)((char *)entry->value +
329					FC_FDMI_HBA_ATTR_HARDWAREVERSION_LEN);
330		len = FC_FDMI_ATTR_ENTRY_HEADER_LEN;
331		len += FC_FDMI_HBA_ATTR_DRIVERVERSION_LEN;
332		put_unaligned_be16(FC_FDMI_HBA_ATTR_DRIVERVERSION,
333				   &entry->type);
334		put_unaligned_be16(len, &entry->len);
335		strncpy((char *)&entry->value,
336			fc_host_driver_version(lport->host),
337			FC_FDMI_HBA_ATTR_DRIVERVERSION_LEN);
338
339		/* OptionROM Version */
340		entry = (struct fc_fdmi_attr_entry *)((char *)entry->value +
341					FC_FDMI_HBA_ATTR_DRIVERVERSION_LEN);
342		len = FC_FDMI_ATTR_ENTRY_HEADER_LEN;
343		len += FC_FDMI_HBA_ATTR_OPTIONROMVERSION_LEN;
344		put_unaligned_be16(FC_FDMI_HBA_ATTR_OPTIONROMVERSION,
345				   &entry->type);
346		put_unaligned_be16(len, &entry->len);
347		strncpy((char *)&entry->value,
348			fc_host_optionrom_version(lport->host),
349			FC_FDMI_HBA_ATTR_OPTIONROMVERSION_LEN);
350
351		/* Firmware Version */
352		entry = (struct fc_fdmi_attr_entry *)((char *)entry->value +
353					FC_FDMI_HBA_ATTR_OPTIONROMVERSION_LEN);
354		len = FC_FDMI_ATTR_ENTRY_HEADER_LEN;
355		len += FC_FDMI_HBA_ATTR_FIRMWAREVERSION_LEN;
356		put_unaligned_be16(FC_FDMI_HBA_ATTR_FIRMWAREVERSION,
357				   &entry->type);
358		put_unaligned_be16(len, &entry->len);
359		strncpy((char *)&entry->value,
360			fc_host_firmware_version(lport->host),
361			FC_FDMI_HBA_ATTR_FIRMWAREVERSION_LEN);
362
363		/* OS Name and Version */
364		entry = (struct fc_fdmi_attr_entry *)((char *)entry->value +
365					FC_FDMI_HBA_ATTR_FIRMWAREVERSION_LEN);
366		len = FC_FDMI_ATTR_ENTRY_HEADER_LEN;
367		len += FC_FDMI_HBA_ATTR_OSNAMEVERSION_LEN;
368		put_unaligned_be16(FC_FDMI_HBA_ATTR_OSNAMEVERSION,
369				   &entry->type);
370		put_unaligned_be16(len, &entry->len);
371		snprintf((char *)&entry->value,
372			FC_FDMI_HBA_ATTR_OSNAMEVERSION_LEN,
373			"%s v%s",
374			init_utsname()->sysname,
375			init_utsname()->release);
376		break;
377	case FC_FDMI_RPA:
378		numattrs = 6;
379		len = sizeof(struct fc_fdmi_rpa);
380		len -= sizeof(struct fc_fdmi_attr_entry);
381		len += (numattrs * FC_FDMI_ATTR_ENTRY_HEADER_LEN);
382		len += FC_FDMI_PORT_ATTR_FC4TYPES_LEN;
383		len += FC_FDMI_PORT_ATTR_SUPPORTEDSPEED_LEN;
384		len += FC_FDMI_PORT_ATTR_CURRENTPORTSPEED_LEN;
385		len += FC_FDMI_PORT_ATTR_MAXFRAMESIZE_LEN;
386		len += FC_FDMI_PORT_ATTR_OSDEVICENAME_LEN;
387		len += FC_FDMI_PORT_ATTR_HOSTNAME_LEN;
388		ct = fc_ct_hdr_fill(fp, op, len, FC_FST_MGMT,
389				    FC_FDMI_SUBTYPE);
390
391		/* Port Name */
392		put_unaligned_be64(lport->wwpn,
393				   &ct->payload.rpa.port.portname);
394
395		/* Port Attributes */
396		put_unaligned_be32(numattrs,
397				   &ct->payload.rpa.hba_attrs.numattrs);
398
399		hba_attrs = &ct->payload.rpa.hba_attrs;
400		entry = (struct fc_fdmi_attr_entry *)hba_attrs->attr;
401
402		/* FC4 types */
403		len = FC_FDMI_ATTR_ENTRY_HEADER_LEN;
404		len += FC_FDMI_PORT_ATTR_FC4TYPES_LEN;
405		put_unaligned_be16(FC_FDMI_PORT_ATTR_FC4TYPES,
406				   &entry->type);
407		put_unaligned_be16(len, &entry->len);
408		memcpy(&entry->value, fc_host_supported_fc4s(lport->host),
409		       FC_FDMI_PORT_ATTR_FC4TYPES_LEN);
410
411		/* Supported Speed */
412		entry = (struct fc_fdmi_attr_entry *)((char *)entry->value +
413					FC_FDMI_PORT_ATTR_FC4TYPES_LEN);
414		len = FC_FDMI_ATTR_ENTRY_HEADER_LEN;
415		len += FC_FDMI_PORT_ATTR_SUPPORTEDSPEED_LEN;
416		put_unaligned_be16(FC_FDMI_PORT_ATTR_SUPPORTEDSPEED,
417				   &entry->type);
418		put_unaligned_be16(len, &entry->len);
419
420		put_unaligned_be32(fc_host_supported_speeds(lport->host),
421				   &entry->value);
422
423		/* Current Port Speed */
424		entry = (struct fc_fdmi_attr_entry *)((char *)entry->value +
425					FC_FDMI_PORT_ATTR_SUPPORTEDSPEED_LEN);
426		len = FC_FDMI_ATTR_ENTRY_HEADER_LEN;
427		len += FC_FDMI_PORT_ATTR_CURRENTPORTSPEED_LEN;
428		put_unaligned_be16(FC_FDMI_PORT_ATTR_CURRENTPORTSPEED,
429				   &entry->type);
430		put_unaligned_be16(len, &entry->len);
431		put_unaligned_be32(lport->link_speed,
432				   &entry->value);
433
434		/* Max Frame Size */
435		entry = (struct fc_fdmi_attr_entry *)((char *)entry->value +
436					FC_FDMI_PORT_ATTR_CURRENTPORTSPEED_LEN);
437		len = FC_FDMI_ATTR_ENTRY_HEADER_LEN;
438		len += FC_FDMI_PORT_ATTR_MAXFRAMESIZE_LEN;
439		put_unaligned_be16(FC_FDMI_PORT_ATTR_MAXFRAMESIZE,
440				   &entry->type);
441		put_unaligned_be16(len, &entry->len);
442		put_unaligned_be32(fc_host_maxframe_size(lport->host),
443				   &entry->value);
444
445		/* OS Device Name */
446		entry = (struct fc_fdmi_attr_entry *)((char *)entry->value +
447					FC_FDMI_PORT_ATTR_MAXFRAMESIZE_LEN);
448		len = FC_FDMI_ATTR_ENTRY_HEADER_LEN;
449		len += FC_FDMI_PORT_ATTR_OSDEVICENAME_LEN;
450		put_unaligned_be16(FC_FDMI_PORT_ATTR_OSDEVICENAME,
451				   &entry->type);
452		put_unaligned_be16(len, &entry->len);
453		/* Use the sysfs device name */
454		strncpy((char *)&entry->value,
455			dev_name(&lport->host->shost_gendev),
456			strnlen(dev_name(&lport->host->shost_gendev),
457				FC_FDMI_PORT_ATTR_HOSTNAME_LEN));
458
459		/* Host Name */
460		entry = (struct fc_fdmi_attr_entry *)((char *)entry->value +
461					FC_FDMI_PORT_ATTR_OSDEVICENAME_LEN);
462		len = FC_FDMI_ATTR_ENTRY_HEADER_LEN;
463		len += FC_FDMI_PORT_ATTR_HOSTNAME_LEN;
464		put_unaligned_be16(FC_FDMI_PORT_ATTR_HOSTNAME,
465				   &entry->type);
466		put_unaligned_be16(len, &entry->len);
467		if (strlen(fc_host_system_hostname(lport->host)))
468			strncpy((char *)&entry->value,
469				fc_host_system_hostname(lport->host),
470				strnlen(fc_host_system_hostname(lport->host),
471					FC_FDMI_PORT_ATTR_HOSTNAME_LEN));
472		else
473			strncpy((char *)&entry->value,
474				init_utsname()->nodename,
475				FC_FDMI_PORT_ATTR_HOSTNAME_LEN);
476		break;
477	case FC_FDMI_DPRT:
478		len = sizeof(struct fc_fdmi_dprt);
479		ct = fc_ct_hdr_fill(fp, op, len, FC_FST_MGMT,
480				    FC_FDMI_SUBTYPE);
481		/* Port Name */
482		put_unaligned_be64(lport->wwpn,
483				   &ct->payload.dprt.port.portname);
484		break;
485	case FC_FDMI_DHBA:
486		len = sizeof(struct fc_fdmi_dhba);
487		ct = fc_ct_hdr_fill(fp, op, len, FC_FST_MGMT,
488				    FC_FDMI_SUBTYPE);
489		/* HBA Identifier */
490		put_unaligned_be64(lport->wwpn, &ct->payload.dhba.hbaid.id);
491		break;
492	default:
493		return -EINVAL;
494	}
495	*r_ctl = FC_RCTL_DD_UNSOL_CTL;
496	*fh_type = FC_TYPE_CT;
497	return 0;
498}
499
500/**
501 * fc_ct_fill() - Fill in a common transport service request frame
502 * @lport: local port.
503 * @fc_id: FC_ID of non-destination rport for GPN_ID and similar inquiries.
504 * @fp: frame to contain payload.
505 * @op: CT opcode.
506 * @r_ctl: pointer to FC header R_CTL.
507 * @fh_type: pointer to FC-4 type.
508 */
509static inline int fc_ct_fill(struct fc_lport *lport,
510		      u32 fc_id, struct fc_frame *fp,
511		      unsigned int op, enum fc_rctl *r_ctl,
512		      enum fc_fh_type *fh_type, u32 *did)
513{
514	int rc = -EINVAL;
515
516	switch (fc_id) {
517	case FC_FID_MGMT_SERV:
518		rc = fc_ct_ms_fill(lport, fc_id, fp, op, r_ctl, fh_type);
519		*did = FC_FID_MGMT_SERV;
520		break;
521	case FC_FID_DIR_SERV:
522	default:
523		rc = fc_ct_ns_fill(lport, fc_id, fp, op, r_ctl, fh_type);
524		*did = FC_FID_DIR_SERV;
525		break;
526	}
527
528	return rc;
529}
530/**
531 * fc_plogi_fill - Fill in plogi request frame
532 */
533static inline void fc_plogi_fill(struct fc_lport *lport, struct fc_frame *fp,
534				 unsigned int op)
535{
536	struct fc_els_flogi *plogi;
537	struct fc_els_csp *csp;
538	struct fc_els_cssp *cp;
539
540	plogi = fc_frame_payload_get(fp, sizeof(*plogi));
541	memset(plogi, 0, sizeof(*plogi));
542	plogi->fl_cmd = (u8) op;
543	put_unaligned_be64(lport->wwpn, &plogi->fl_wwpn);
544	put_unaligned_be64(lport->wwnn, &plogi->fl_wwnn);
545
546	csp = &plogi->fl_csp;
547	csp->sp_hi_ver = 0x20;
548	csp->sp_lo_ver = 0x20;
549	csp->sp_bb_cred = htons(10);	/* this gets set by gateway */
550	csp->sp_bb_data = htons((u16) lport->mfs);
551	cp = &plogi->fl_cssp[3 - 1];	/* class 3 parameters */
552	cp->cp_class = htons(FC_CPC_VALID | FC_CPC_SEQ);
553	csp->sp_features = htons(FC_SP_FT_CIRO);
554	csp->sp_tot_seq = htons(255);	/* seq. we accept */
555	csp->sp_rel_off = htons(0x1f);
556	csp->sp_e_d_tov = htonl(lport->e_d_tov);
557
558	cp->cp_rdfs = htons((u16) lport->mfs);
559	cp->cp_con_seq = htons(255);
560	cp->cp_open_seq = 1;
561}
562
563/**
564 * fc_flogi_fill - Fill in a flogi request frame.
565 */
566static inline void fc_flogi_fill(struct fc_lport *lport, struct fc_frame *fp)
567{
568	struct fc_els_csp *sp;
569	struct fc_els_cssp *cp;
570	struct fc_els_flogi *flogi;
571
572	flogi = fc_frame_payload_get(fp, sizeof(*flogi));
573	memset(flogi, 0, sizeof(*flogi));
574	flogi->fl_cmd = (u8) ELS_FLOGI;
575	put_unaligned_be64(lport->wwpn, &flogi->fl_wwpn);
576	put_unaligned_be64(lport->wwnn, &flogi->fl_wwnn);
577	sp = &flogi->fl_csp;
578	sp->sp_hi_ver = 0x20;
579	sp->sp_lo_ver = 0x20;
580	sp->sp_bb_cred = htons(10);	/* this gets set by gateway */
581	sp->sp_bb_data = htons((u16) lport->mfs);
582	cp = &flogi->fl_cssp[3 - 1];	/* class 3 parameters */
583	cp->cp_class = htons(FC_CPC_VALID | FC_CPC_SEQ);
584	if (lport->does_npiv)
585		sp->sp_features = htons(FC_SP_FT_NPIV);
586}
587
588/**
589 * fc_fdisc_fill - Fill in a fdisc request frame.
590 */
591static inline void fc_fdisc_fill(struct fc_lport *lport, struct fc_frame *fp)
592{
593	struct fc_els_csp *sp;
594	struct fc_els_cssp *cp;
595	struct fc_els_flogi *fdisc;
596
597	fdisc = fc_frame_payload_get(fp, sizeof(*fdisc));
598	memset(fdisc, 0, sizeof(*fdisc));
599	fdisc->fl_cmd = (u8) ELS_FDISC;
600	put_unaligned_be64(lport->wwpn, &fdisc->fl_wwpn);
601	put_unaligned_be64(lport->wwnn, &fdisc->fl_wwnn);
602	sp = &fdisc->fl_csp;
603	sp->sp_hi_ver = 0x20;
604	sp->sp_lo_ver = 0x20;
605	sp->sp_bb_cred = htons(10);	/* this gets set by gateway */
606	sp->sp_bb_data = htons((u16) lport->mfs);
607	cp = &fdisc->fl_cssp[3 - 1];	/* class 3 parameters */
608	cp->cp_class = htons(FC_CPC_VALID | FC_CPC_SEQ);
609}
610
611/**
612 * fc_logo_fill - Fill in a logo request frame.
613 */
614static inline void fc_logo_fill(struct fc_lport *lport, struct fc_frame *fp)
615{
616	struct fc_els_logo *logo;
617
618	logo = fc_frame_payload_get(fp, sizeof(*logo));
619	memset(logo, 0, sizeof(*logo));
620	logo->fl_cmd = ELS_LOGO;
621	hton24(logo->fl_n_port_id, lport->port_id);
622	logo->fl_n_port_wwn = htonll(lport->wwpn);
623}
624
625/**
626 * fc_rtv_fill - Fill in RTV (read timeout value) request frame.
627 */
628static inline void fc_rtv_fill(struct fc_lport *lport, struct fc_frame *fp)
629{
630	struct fc_els_rtv *rtv;
631
632	rtv = fc_frame_payload_get(fp, sizeof(*rtv));
633	memset(rtv, 0, sizeof(*rtv));
634	rtv->rtv_cmd = ELS_RTV;
635}
636
637/**
638 * fc_rec_fill - Fill in rec request frame
639 */
640static inline void fc_rec_fill(struct fc_lport *lport, struct fc_frame *fp)
641{
642	struct fc_els_rec *rec;
643	struct fc_exch *ep = fc_seq_exch(fr_seq(fp));
644
645	rec = fc_frame_payload_get(fp, sizeof(*rec));
646	memset(rec, 0, sizeof(*rec));
647	rec->rec_cmd = ELS_REC;
648	hton24(rec->rec_s_id, lport->port_id);
649	rec->rec_ox_id = htons(ep->oxid);
650	rec->rec_rx_id = htons(ep->rxid);
651}
652
653/**
654 * fc_prli_fill - Fill in prli request frame
655 */
656static inline void fc_prli_fill(struct fc_lport *lport, struct fc_frame *fp)
657{
658	struct {
659		struct fc_els_prli prli;
660		struct fc_els_spp spp;
661	} *pp;
662
663	pp = fc_frame_payload_get(fp, sizeof(*pp));
664	memset(pp, 0, sizeof(*pp));
665	pp->prli.prli_cmd = ELS_PRLI;
666	pp->prli.prli_spp_len = sizeof(struct fc_els_spp);
667	pp->prli.prli_len = htons(sizeof(*pp));
668	pp->spp.spp_type = FC_TYPE_FCP;
669	pp->spp.spp_flags = FC_SPP_EST_IMG_PAIR;
670	pp->spp.spp_params = htonl(lport->service_params);
671}
672
673/**
674 * fc_scr_fill - Fill in a scr request frame.
675 */
676static inline void fc_scr_fill(struct fc_lport *lport, struct fc_frame *fp)
677{
678	struct fc_els_scr *scr;
679
680	scr = fc_frame_payload_get(fp, sizeof(*scr));
681	memset(scr, 0, sizeof(*scr));
682	scr->scr_cmd = ELS_SCR;
683	scr->scr_reg_func = ELS_SCRF_FULL;
684}
685
686/**
687 * fc_els_fill - Fill in an ELS  request frame
688 */
689static inline int fc_els_fill(struct fc_lport *lport,
690		       u32 did,
691		       struct fc_frame *fp, unsigned int op,
692		       enum fc_rctl *r_ctl, enum fc_fh_type *fh_type)
693{
694	switch (op) {
695	case ELS_ADISC:
696		fc_adisc_fill(lport, fp);
697		break;
698
699	case ELS_PLOGI:
700		fc_plogi_fill(lport, fp, ELS_PLOGI);
701		break;
702
703	case ELS_FLOGI:
704		fc_flogi_fill(lport, fp);
705		break;
706
707	case ELS_FDISC:
708		fc_fdisc_fill(lport, fp);
709		break;
710
711	case ELS_LOGO:
712		fc_logo_fill(lport, fp);
713		break;
714
715	case ELS_RTV:
716		fc_rtv_fill(lport, fp);
717		break;
718
719	case ELS_REC:
720		fc_rec_fill(lport, fp);
721		break;
722
723	case ELS_PRLI:
724		fc_prli_fill(lport, fp);
725		break;
726
727	case ELS_SCR:
728		fc_scr_fill(lport, fp);
729		break;
730
731	default:
732		return -EINVAL;
733	}
734
735	*r_ctl = FC_RCTL_ELS_REQ;
736	*fh_type = FC_TYPE_ELS;
737	return 0;
738}
739#endif /* _FC_ENCODE_H_ */