2019-05-30 07:57:49 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2008-12-10 07:10:17 +08:00
|
|
|
/*
|
|
|
|
* Copyright(c) 2008 Intel Corporation. All rights reserved.
|
|
|
|
*
|
|
|
|
* Maintained at www.Open-FCoE.org
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _FC_ENCODE_H_
|
|
|
|
#define _FC_ENCODE_H_
|
|
|
|
#include <asm/unaligned.h>
|
2012-01-23 09:30:05 +08:00
|
|
|
#include <linux/utsname.h>
|
2020-10-27 00:06:12 +08:00
|
|
|
#include <scsi/fc/fc_ms.h>
|
2008-12-10 07:10:17 +08:00
|
|
|
|
2010-07-21 06:21:01 +08:00
|
|
|
/*
|
|
|
|
* F_CTL values for simple requests and responses.
|
|
|
|
*/
|
|
|
|
#define FC_FCTL_REQ (FC_FC_FIRST_SEQ | FC_FC_END_SEQ | FC_FC_SEQ_INIT)
|
|
|
|
#define FC_FCTL_RESP (FC_FC_EX_CTX | FC_FC_LAST_SEQ | \
|
|
|
|
FC_FC_END_SEQ | FC_FC_SEQ_INIT)
|
|
|
|
|
2008-12-10 07:10:17 +08:00
|
|
|
struct fc_ns_rft {
|
|
|
|
struct fc_ns_fid fid; /* port ID object */
|
|
|
|
struct fc_ns_fts fts; /* FC4-types object */
|
|
|
|
};
|
|
|
|
|
|
|
|
struct fc_ct_req {
|
|
|
|
struct fc_ct_hdr hdr;
|
|
|
|
union {
|
|
|
|
struct fc_ns_gid_ft gid;
|
|
|
|
struct fc_ns_rn_id rn;
|
|
|
|
struct fc_ns_rft rft;
|
2009-11-04 03:49:27 +08:00
|
|
|
struct fc_ns_rff_id rff;
|
[SCSI] libfc: send GPN_ID in reaction to single-port RSCNs.
When an RSCN indicates changes to individual remote ports,
don't blindly log them out and then back in. Instead, determine
whether they're still in the directory, by doing GPN_ID.
If that is successful, call login, which will send ADISC and reverify,
otherwise, call logoff. Perhaps we should just delete the rport,
not send LOGO, but it seems safer.
Also, fix a possible issue where if a mix of records in the RSCN
cause us to queue disc_ports for disc_single and then we decide
to do full rediscovery, we leak memory for those disc_ports queued.
So, go through the list of disc_ports even if doing full discovery.
Free the disc_ports in any case. If any of the disc_single() calls
return error, do a full discovery.
The ability to fill in GPN_ID requests was added to fc_ct_fill().
For this, it needs the FC_ID to be passed in as an arg.
The did parameter for fc_elsct_send() is used for that, since the
actual D_DID will always be 0xfffffc for all CT requests so far.
Signed-off-by: Joe Eykholt <jeykholt@cisco.com>
Signed-off-by: Robert Love <robert.w.love@intel.com>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
2009-08-26 05:03:58 +08:00
|
|
|
struct fc_ns_fid fid;
|
2009-11-04 03:46:56 +08:00
|
|
|
struct fc_ns_rsnn snn;
|
2009-11-04 03:47:01 +08:00
|
|
|
struct fc_ns_rspn spn;
|
2012-01-23 09:30:05 +08:00
|
|
|
struct fc_fdmi_rhba rhba;
|
|
|
|
struct fc_fdmi_rpa rpa;
|
|
|
|
struct fc_fdmi_dprt dprt;
|
|
|
|
struct fc_fdmi_dhba dhba;
|
2008-12-10 07:10:17 +08:00
|
|
|
} payload;
|
|
|
|
};
|
|
|
|
|
2009-08-26 05:03:47 +08:00
|
|
|
/**
|
|
|
|
* fc_adisc_fill() - Fill in adisc request frame
|
|
|
|
* @lport: local port.
|
|
|
|
* @fp: fc frame where payload will be placed.
|
|
|
|
*/
|
|
|
|
static inline void fc_adisc_fill(struct fc_lport *lport, struct fc_frame *fp)
|
|
|
|
{
|
|
|
|
struct fc_els_adisc *adisc;
|
|
|
|
|
|
|
|
adisc = fc_frame_payload_get(fp, sizeof(*adisc));
|
|
|
|
memset(adisc, 0, sizeof(*adisc));
|
|
|
|
adisc->adisc_cmd = ELS_ADISC;
|
|
|
|
put_unaligned_be64(lport->wwpn, &adisc->adisc_wwpn);
|
|
|
|
put_unaligned_be64(lport->wwnn, &adisc->adisc_wwnn);
|
2010-05-08 06:18:41 +08:00
|
|
|
hton24(adisc->adisc_port_id, lport->port_id);
|
2009-08-26 05:03:47 +08:00
|
|
|
}
|
|
|
|
|
2008-12-10 07:10:17 +08:00
|
|
|
/**
|
|
|
|
* fc_ct_hdr_fill- fills ct header and reset ct payload
|
|
|
|
* returns pointer to ct request.
|
|
|
|
*/
|
|
|
|
static inline struct fc_ct_req *fc_ct_hdr_fill(const struct fc_frame *fp,
|
2012-01-23 09:30:00 +08:00
|
|
|
unsigned int op, size_t req_size,
|
|
|
|
enum fc_ct_fs_type fs_type,
|
|
|
|
u8 subtype)
|
2008-12-10 07:10:17 +08:00
|
|
|
{
|
|
|
|
struct fc_ct_req *ct;
|
|
|
|
size_t ct_plen;
|
|
|
|
|
|
|
|
ct_plen = sizeof(struct fc_ct_hdr) + req_size;
|
|
|
|
ct = fc_frame_payload_get(fp, ct_plen);
|
|
|
|
memset(ct, 0, ct_plen);
|
|
|
|
ct->hdr.ct_rev = FC_CT_REV;
|
2012-01-23 09:30:00 +08:00
|
|
|
ct->hdr.ct_fs_type = fs_type;
|
|
|
|
ct->hdr.ct_fs_subtype = subtype;
|
2008-12-10 07:10:17 +08:00
|
|
|
ct->hdr.ct_cmd = htons((u16) op);
|
|
|
|
return ct;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2012-01-23 09:30:00 +08:00
|
|
|
* fc_ct_ns_fill() - Fill in a name service request frame
|
[SCSI] libfc: send GPN_ID in reaction to single-port RSCNs.
When an RSCN indicates changes to individual remote ports,
don't blindly log them out and then back in. Instead, determine
whether they're still in the directory, by doing GPN_ID.
If that is successful, call login, which will send ADISC and reverify,
otherwise, call logoff. Perhaps we should just delete the rport,
not send LOGO, but it seems safer.
Also, fix a possible issue where if a mix of records in the RSCN
cause us to queue disc_ports for disc_single and then we decide
to do full rediscovery, we leak memory for those disc_ports queued.
So, go through the list of disc_ports even if doing full discovery.
Free the disc_ports in any case. If any of the disc_single() calls
return error, do a full discovery.
The ability to fill in GPN_ID requests was added to fc_ct_fill().
For this, it needs the FC_ID to be passed in as an arg.
The did parameter for fc_elsct_send() is used for that, since the
actual D_DID will always be 0xfffffc for all CT requests so far.
Signed-off-by: Joe Eykholt <jeykholt@cisco.com>
Signed-off-by: Robert Love <robert.w.love@intel.com>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
2009-08-26 05:03:58 +08:00
|
|
|
* @lport: local port.
|
|
|
|
* @fc_id: FC_ID of non-destination rport for GPN_ID and similar inquiries.
|
|
|
|
* @fp: frame to contain payload.
|
|
|
|
* @op: CT opcode.
|
|
|
|
* @r_ctl: pointer to FC header R_CTL.
|
|
|
|
* @fh_type: pointer to FC-4 type.
|
2008-12-10 07:10:17 +08:00
|
|
|
*/
|
2012-01-23 09:30:00 +08:00
|
|
|
static inline int fc_ct_ns_fill(struct fc_lport *lport,
|
[SCSI] libfc: send GPN_ID in reaction to single-port RSCNs.
When an RSCN indicates changes to individual remote ports,
don't blindly log them out and then back in. Instead, determine
whether they're still in the directory, by doing GPN_ID.
If that is successful, call login, which will send ADISC and reverify,
otherwise, call logoff. Perhaps we should just delete the rport,
not send LOGO, but it seems safer.
Also, fix a possible issue where if a mix of records in the RSCN
cause us to queue disc_ports for disc_single and then we decide
to do full rediscovery, we leak memory for those disc_ports queued.
So, go through the list of disc_ports even if doing full discovery.
Free the disc_ports in any case. If any of the disc_single() calls
return error, do a full discovery.
The ability to fill in GPN_ID requests was added to fc_ct_fill().
For this, it needs the FC_ID to be passed in as an arg.
The did parameter for fc_elsct_send() is used for that, since the
actual D_DID will always be 0xfffffc for all CT requests so far.
Signed-off-by: Joe Eykholt <jeykholt@cisco.com>
Signed-off-by: Robert Love <robert.w.love@intel.com>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
2009-08-26 05:03:58 +08:00
|
|
|
u32 fc_id, struct fc_frame *fp,
|
2009-08-26 05:00:55 +08:00
|
|
|
unsigned int op, enum fc_rctl *r_ctl,
|
2008-12-10 07:10:17 +08:00
|
|
|
enum fc_fh_type *fh_type)
|
|
|
|
{
|
|
|
|
struct fc_ct_req *ct;
|
2009-11-04 03:48:55 +08:00
|
|
|
size_t len;
|
2008-12-10 07:10:17 +08:00
|
|
|
|
|
|
|
switch (op) {
|
|
|
|
case FC_NS_GPN_FT:
|
2012-01-23 09:30:00 +08:00
|
|
|
ct = fc_ct_hdr_fill(fp, op, sizeof(struct fc_ns_gid_ft),
|
|
|
|
FC_FST_DIR, FC_NS_SUBTYPE);
|
2008-12-10 07:10:17 +08:00
|
|
|
ct->payload.gid.fn_fc4_type = FC_TYPE_FCP;
|
|
|
|
break;
|
|
|
|
|
[SCSI] libfc: send GPN_ID in reaction to single-port RSCNs.
When an RSCN indicates changes to individual remote ports,
don't blindly log them out and then back in. Instead, determine
whether they're still in the directory, by doing GPN_ID.
If that is successful, call login, which will send ADISC and reverify,
otherwise, call logoff. Perhaps we should just delete the rport,
not send LOGO, but it seems safer.
Also, fix a possible issue where if a mix of records in the RSCN
cause us to queue disc_ports for disc_single and then we decide
to do full rediscovery, we leak memory for those disc_ports queued.
So, go through the list of disc_ports even if doing full discovery.
Free the disc_ports in any case. If any of the disc_single() calls
return error, do a full discovery.
The ability to fill in GPN_ID requests was added to fc_ct_fill().
For this, it needs the FC_ID to be passed in as an arg.
The did parameter for fc_elsct_send() is used for that, since the
actual D_DID will always be 0xfffffc for all CT requests so far.
Signed-off-by: Joe Eykholt <jeykholt@cisco.com>
Signed-off-by: Robert Love <robert.w.love@intel.com>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
2009-08-26 05:03:58 +08:00
|
|
|
case FC_NS_GPN_ID:
|
2012-01-23 09:30:00 +08:00
|
|
|
ct = fc_ct_hdr_fill(fp, op, sizeof(struct fc_ns_fid),
|
|
|
|
FC_FST_DIR, FC_NS_SUBTYPE);
|
|
|
|
ct->payload.gid.fn_fc4_type = FC_TYPE_FCP;
|
[SCSI] libfc: send GPN_ID in reaction to single-port RSCNs.
When an RSCN indicates changes to individual remote ports,
don't blindly log them out and then back in. Instead, determine
whether they're still in the directory, by doing GPN_ID.
If that is successful, call login, which will send ADISC and reverify,
otherwise, call logoff. Perhaps we should just delete the rport,
not send LOGO, but it seems safer.
Also, fix a possible issue where if a mix of records in the RSCN
cause us to queue disc_ports for disc_single and then we decide
to do full rediscovery, we leak memory for those disc_ports queued.
So, go through the list of disc_ports even if doing full discovery.
Free the disc_ports in any case. If any of the disc_single() calls
return error, do a full discovery.
The ability to fill in GPN_ID requests was added to fc_ct_fill().
For this, it needs the FC_ID to be passed in as an arg.
The did parameter for fc_elsct_send() is used for that, since the
actual D_DID will always be 0xfffffc for all CT requests so far.
Signed-off-by: Joe Eykholt <jeykholt@cisco.com>
Signed-off-by: Robert Love <robert.w.love@intel.com>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
2009-08-26 05:03:58 +08:00
|
|
|
hton24(ct->payload.fid.fp_fid, fc_id);
|
|
|
|
break;
|
|
|
|
|
2008-12-10 07:10:17 +08:00
|
|
|
case FC_NS_RFT_ID:
|
2012-01-23 09:30:00 +08:00
|
|
|
ct = fc_ct_hdr_fill(fp, op, sizeof(struct fc_ns_rft),
|
|
|
|
FC_FST_DIR, FC_NS_SUBTYPE);
|
2010-05-08 06:18:41 +08:00
|
|
|
hton24(ct->payload.rft.fid.fp_fid, lport->port_id);
|
2008-12-10 07:10:17 +08:00
|
|
|
ct->payload.rft.fts = lport->fcts;
|
|
|
|
break;
|
|
|
|
|
2009-11-04 03:49:27 +08:00
|
|
|
case FC_NS_RFF_ID:
|
2012-01-23 09:30:00 +08:00
|
|
|
ct = fc_ct_hdr_fill(fp, op, sizeof(struct fc_ns_rff_id),
|
|
|
|
FC_FST_DIR, FC_NS_SUBTYPE);
|
2010-05-08 06:18:41 +08:00
|
|
|
hton24(ct->payload.rff.fr_fid.fp_fid, lport->port_id);
|
2009-11-04 03:49:27 +08:00
|
|
|
ct->payload.rff.fr_type = FC_TYPE_FCP;
|
|
|
|
if (lport->service_params & FCP_SPPF_INIT_FCN)
|
|
|
|
ct->payload.rff.fr_feat = FCP_FEAT_INIT;
|
|
|
|
if (lport->service_params & FCP_SPPF_TARG_FCN)
|
|
|
|
ct->payload.rff.fr_feat |= FCP_FEAT_TARG;
|
|
|
|
break;
|
|
|
|
|
2009-11-04 03:46:51 +08:00
|
|
|
case FC_NS_RNN_ID:
|
2012-01-23 09:30:00 +08:00
|
|
|
ct = fc_ct_hdr_fill(fp, op, sizeof(struct fc_ns_rn_id),
|
|
|
|
FC_FST_DIR, FC_NS_SUBTYPE);
|
2010-05-08 06:18:41 +08:00
|
|
|
hton24(ct->payload.rn.fr_fid.fp_fid, lport->port_id);
|
2009-11-04 03:46:51 +08:00
|
|
|
put_unaligned_be64(lport->wwnn, &ct->payload.rn.fr_wwn);
|
2008-12-10 07:10:17 +08:00
|
|
|
break;
|
|
|
|
|
2009-11-04 03:47:01 +08:00
|
|
|
case FC_NS_RSPN_ID:
|
2009-11-04 03:48:55 +08:00
|
|
|
len = strnlen(fc_host_symbolic_name(lport->host), 255);
|
2012-01-23 09:30:00 +08:00
|
|
|
ct = fc_ct_hdr_fill(fp, op, sizeof(struct fc_ns_rspn) + len,
|
|
|
|
FC_FST_DIR, FC_NS_SUBTYPE);
|
2010-05-08 06:18:41 +08:00
|
|
|
hton24(ct->payload.spn.fr_fid.fp_fid, lport->port_id);
|
2009-11-04 03:47:01 +08:00
|
|
|
strncpy(ct->payload.spn.fr_name,
|
2009-11-04 03:48:55 +08:00
|
|
|
fc_host_symbolic_name(lport->host), len);
|
|
|
|
ct->payload.spn.fr_name_len = len;
|
2009-11-04 03:47:01 +08:00
|
|
|
break;
|
|
|
|
|
2009-11-04 03:46:56 +08:00
|
|
|
case FC_NS_RSNN_NN:
|
2009-11-04 03:48:55 +08:00
|
|
|
len = strnlen(fc_host_symbolic_name(lport->host), 255);
|
2012-01-23 09:30:00 +08:00
|
|
|
ct = fc_ct_hdr_fill(fp, op, sizeof(struct fc_ns_rsnn) + len,
|
|
|
|
FC_FST_DIR, FC_NS_SUBTYPE);
|
2009-11-04 03:46:56 +08:00
|
|
|
put_unaligned_be64(lport->wwnn, &ct->payload.snn.fr_wwn);
|
|
|
|
strncpy(ct->payload.snn.fr_name,
|
2009-11-04 03:48:55 +08:00
|
|
|
fc_host_symbolic_name(lport->host), len);
|
|
|
|
ct->payload.snn.fr_name_len = len;
|
2009-11-04 03:46:56 +08:00
|
|
|
break;
|
|
|
|
|
2008-12-10 07:10:17 +08:00
|
|
|
default:
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
*r_ctl = FC_RCTL_DD_UNSOL_CTL;
|
|
|
|
*fh_type = FC_TYPE_CT;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
scsi: libfc: Work around -Warray-bounds warning
Building libfc with gcc -Warray-bounds identifies a number of cases in one
file where a strncpy() is performed into a single-byte character array:
In file included from include/linux/bitmap.h:9,
from include/linux/cpumask.h:12,
from include/linux/smp.h:13,
from include/linux/lockdep.h:14,
from include/linux/spinlock.h:59,
from include/linux/debugobjects.h:6,
from include/linux/timer.h:8,
from include/scsi/libfc.h:11,
from drivers/scsi/libfc/fc_elsct.c:17:
In function 'strncpy',
inlined from 'fc_ct_ms_fill.constprop' at drivers/scsi/libfc/fc_encode.h:235:3:
include/linux/string.h:290:30: warning: '__builtin_strncpy' offset [56, 135] from the object at 'pp' is out of the bounds of referenced subobject 'value' with type '__u8[1]' {aka 'unsigned char[1]'} at offset 56 [-Warray-bounds]
290 | #define __underlying_strncpy __builtin_strncpy
| ^
include/linux/string.h:300:9: note: in expansion of macro '__underlying_strncpy'
300 | return __underlying_strncpy(p, q, size);
| ^~~~~~~~~~~~~~~~~~~~
This is not a bug because the 1-byte array is used as an odd way to express
a variable-length data field here. I tried to convert it to a
flexible-array member, but in the end could not figure out why the
sizeof(struct fc_fdmi_???) are used the way they are, and how to properly
convert those.
Work around this instead by abstracting the string copy in a slightly
higher-level function fc_ct_hdr_fill() helper that strscpy() and memset()
to achieve the same result as strncpy() but does not require a
zero-terminated input and does not get checked for the array overflow
because gcc (so far) does not understand the behavior of strscpy().
Link: https://lore.kernel.org/r/20201026160705.3706396-2-arnd@kernel.org
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
2020-10-27 00:06:13 +08:00
|
|
|
static inline void fc_ct_ms_fill_attr(struct fc_fdmi_attr_entry *entry,
|
|
|
|
const char *in, size_t len)
|
|
|
|
{
|
2021-06-03 18:14:04 +08:00
|
|
|
int copied;
|
|
|
|
|
2021-06-03 20:16:21 +08:00
|
|
|
copied = strscpy(entry->value, in, len);
|
|
|
|
if (copied > 0 && copied + 1 < len)
|
|
|
|
memset(entry->value + copied + 1, 0, len - copied - 1);
|
scsi: libfc: Work around -Warray-bounds warning
Building libfc with gcc -Warray-bounds identifies a number of cases in one
file where a strncpy() is performed into a single-byte character array:
In file included from include/linux/bitmap.h:9,
from include/linux/cpumask.h:12,
from include/linux/smp.h:13,
from include/linux/lockdep.h:14,
from include/linux/spinlock.h:59,
from include/linux/debugobjects.h:6,
from include/linux/timer.h:8,
from include/scsi/libfc.h:11,
from drivers/scsi/libfc/fc_elsct.c:17:
In function 'strncpy',
inlined from 'fc_ct_ms_fill.constprop' at drivers/scsi/libfc/fc_encode.h:235:3:
include/linux/string.h:290:30: warning: '__builtin_strncpy' offset [56, 135] from the object at 'pp' is out of the bounds of referenced subobject 'value' with type '__u8[1]' {aka 'unsigned char[1]'} at offset 56 [-Warray-bounds]
290 | #define __underlying_strncpy __builtin_strncpy
| ^
include/linux/string.h:300:9: note: in expansion of macro '__underlying_strncpy'
300 | return __underlying_strncpy(p, q, size);
| ^~~~~~~~~~~~~~~~~~~~
This is not a bug because the 1-byte array is used as an odd way to express
a variable-length data field here. I tried to convert it to a
flexible-array member, but in the end could not figure out why the
sizeof(struct fc_fdmi_???) are used the way they are, and how to properly
convert those.
Work around this instead by abstracting the string copy in a slightly
higher-level function fc_ct_hdr_fill() helper that strscpy() and memset()
to achieve the same result as strncpy() but does not require a
zero-terminated input and does not get checked for the array overflow
because gcc (so far) does not understand the behavior of strscpy().
Link: https://lore.kernel.org/r/20201026160705.3706396-2-arnd@kernel.org
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
2020-10-27 00:06:13 +08:00
|
|
|
}
|
|
|
|
|
2012-01-23 09:30:05 +08:00
|
|
|
/**
|
|
|
|
* fc_ct_ms_fill() - Fill in a mgmt service request frame
|
|
|
|
* @lport: local port.
|
|
|
|
* @fc_id: FC_ID of non-destination rport for GPN_ID and similar inquiries.
|
|
|
|
* @fp: frame to contain payload.
|
|
|
|
* @op: CT opcode.
|
|
|
|
* @r_ctl: pointer to FC header R_CTL.
|
|
|
|
* @fh_type: pointer to FC-4 type.
|
|
|
|
*/
|
|
|
|
static inline int fc_ct_ms_fill(struct fc_lport *lport,
|
|
|
|
u32 fc_id, struct fc_frame *fp,
|
|
|
|
unsigned int op, enum fc_rctl *r_ctl,
|
|
|
|
enum fc_fh_type *fh_type)
|
|
|
|
{
|
|
|
|
struct fc_ct_req *ct;
|
|
|
|
size_t len;
|
|
|
|
struct fc_fdmi_attr_entry *entry;
|
|
|
|
struct fs_fdmi_attrs *hba_attrs;
|
|
|
|
int numattrs = 0;
|
2021-06-03 20:16:21 +08:00
|
|
|
struct fc_host_attrs *fc_host = shost_to_fc_host(lport->host);
|
2012-01-23 09:30:05 +08:00
|
|
|
|
|
|
|
switch (op) {
|
|
|
|
case FC_FDMI_RHBA:
|
2021-06-03 20:16:21 +08:00
|
|
|
numattrs = 11;
|
2012-01-23 09:30:05 +08:00
|
|
|
len = sizeof(struct fc_fdmi_rhba);
|
|
|
|
len -= sizeof(struct fc_fdmi_attr_entry);
|
|
|
|
len += (numattrs * FC_FDMI_ATTR_ENTRY_HEADER_LEN);
|
|
|
|
len += FC_FDMI_HBA_ATTR_NODENAME_LEN;
|
|
|
|
len += FC_FDMI_HBA_ATTR_MANUFACTURER_LEN;
|
|
|
|
len += FC_FDMI_HBA_ATTR_SERIALNUMBER_LEN;
|
|
|
|
len += FC_FDMI_HBA_ATTR_MODEL_LEN;
|
|
|
|
len += FC_FDMI_HBA_ATTR_MODELDESCR_LEN;
|
|
|
|
len += FC_FDMI_HBA_ATTR_HARDWAREVERSION_LEN;
|
|
|
|
len += FC_FDMI_HBA_ATTR_DRIVERVERSION_LEN;
|
|
|
|
len += FC_FDMI_HBA_ATTR_OPTIONROMVERSION_LEN;
|
|
|
|
len += FC_FDMI_HBA_ATTR_FIRMWAREVERSION_LEN;
|
|
|
|
len += FC_FDMI_HBA_ATTR_OSNAMEVERSION_LEN;
|
2021-06-03 20:16:21 +08:00
|
|
|
len += FC_FDMI_HBA_ATTR_MAXCTPAYLOAD_LEN;
|
|
|
|
|
|
|
|
if (fc_host->fdmi_version == FDMI_V2) {
|
|
|
|
numattrs += 7;
|
|
|
|
len += FC_FDMI_HBA_ATTR_NODESYMBLNAME_LEN;
|
|
|
|
len += FC_FDMI_HBA_ATTR_VENDORSPECIFICINFO_LEN;
|
|
|
|
len += FC_FDMI_HBA_ATTR_NUMBEROFPORTS_LEN;
|
|
|
|
len += FC_FDMI_HBA_ATTR_FABRICNAME_LEN;
|
|
|
|
len += FC_FDMI_HBA_ATTR_BIOSVERSION_LEN;
|
|
|
|
len += FC_FDMI_HBA_ATTR_BIOSSTATE_LEN;
|
|
|
|
len += FC_FDMI_HBA_ATTR_VENDORIDENTIFIER_LEN;
|
|
|
|
}
|
|
|
|
|
2012-01-23 09:30:05 +08:00
|
|
|
ct = fc_ct_hdr_fill(fp, op, len, FC_FST_MGMT,
|
2021-06-03 20:16:21 +08:00
|
|
|
FC_FDMI_SUBTYPE);
|
2012-01-23 09:30:05 +08:00
|
|
|
|
|
|
|
/* HBA Identifier */
|
|
|
|
put_unaligned_be64(lport->wwpn, &ct->payload.rhba.hbaid.id);
|
|
|
|
/* Number of Ports - always 1 */
|
|
|
|
put_unaligned_be32(1, &ct->payload.rhba.port.numport);
|
|
|
|
/* Port Name */
|
|
|
|
put_unaligned_be64(lport->wwpn,
|
|
|
|
&ct->payload.rhba.port.port[0].portname);
|
|
|
|
|
|
|
|
/* HBA Attributes */
|
|
|
|
put_unaligned_be32(numattrs,
|
|
|
|
&ct->payload.rhba.hba_attrs.numattrs);
|
|
|
|
hba_attrs = &ct->payload.rhba.hba_attrs;
|
|
|
|
entry = (struct fc_fdmi_attr_entry *)hba_attrs->attr;
|
|
|
|
/* NodeName*/
|
|
|
|
len = FC_FDMI_ATTR_ENTRY_HEADER_LEN;
|
|
|
|
len += FC_FDMI_HBA_ATTR_NODENAME_LEN;
|
|
|
|
put_unaligned_be16(FC_FDMI_HBA_ATTR_NODENAME,
|
|
|
|
&entry->type);
|
|
|
|
put_unaligned_be16(len, &entry->len);
|
|
|
|
put_unaligned_be64(lport->wwnn,
|
2022-02-15 06:39:03 +08:00
|
|
|
(__be64 *)&entry->value);
|
2012-01-23 09:30:05 +08:00
|
|
|
|
|
|
|
/* Manufacturer */
|
|
|
|
entry = (struct fc_fdmi_attr_entry *)((char *)entry->value +
|
|
|
|
FC_FDMI_HBA_ATTR_NODENAME_LEN);
|
|
|
|
len = FC_FDMI_ATTR_ENTRY_HEADER_LEN;
|
|
|
|
len += FC_FDMI_HBA_ATTR_MANUFACTURER_LEN;
|
|
|
|
put_unaligned_be16(FC_FDMI_HBA_ATTR_MANUFACTURER,
|
|
|
|
&entry->type);
|
|
|
|
put_unaligned_be16(len, &entry->len);
|
scsi: libfc: Work around -Warray-bounds warning
Building libfc with gcc -Warray-bounds identifies a number of cases in one
file where a strncpy() is performed into a single-byte character array:
In file included from include/linux/bitmap.h:9,
from include/linux/cpumask.h:12,
from include/linux/smp.h:13,
from include/linux/lockdep.h:14,
from include/linux/spinlock.h:59,
from include/linux/debugobjects.h:6,
from include/linux/timer.h:8,
from include/scsi/libfc.h:11,
from drivers/scsi/libfc/fc_elsct.c:17:
In function 'strncpy',
inlined from 'fc_ct_ms_fill.constprop' at drivers/scsi/libfc/fc_encode.h:235:3:
include/linux/string.h:290:30: warning: '__builtin_strncpy' offset [56, 135] from the object at 'pp' is out of the bounds of referenced subobject 'value' with type '__u8[1]' {aka 'unsigned char[1]'} at offset 56 [-Warray-bounds]
290 | #define __underlying_strncpy __builtin_strncpy
| ^
include/linux/string.h:300:9: note: in expansion of macro '__underlying_strncpy'
300 | return __underlying_strncpy(p, q, size);
| ^~~~~~~~~~~~~~~~~~~~
This is not a bug because the 1-byte array is used as an odd way to express
a variable-length data field here. I tried to convert it to a
flexible-array member, but in the end could not figure out why the
sizeof(struct fc_fdmi_???) are used the way they are, and how to properly
convert those.
Work around this instead by abstracting the string copy in a slightly
higher-level function fc_ct_hdr_fill() helper that strscpy() and memset()
to achieve the same result as strncpy() but does not require a
zero-terminated input and does not get checked for the array overflow
because gcc (so far) does not understand the behavior of strscpy().
Link: https://lore.kernel.org/r/20201026160705.3706396-2-arnd@kernel.org
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
2020-10-27 00:06:13 +08:00
|
|
|
fc_ct_ms_fill_attr(entry,
|
2012-01-23 09:30:05 +08:00
|
|
|
fc_host_manufacturer(lport->host),
|
|
|
|
FC_FDMI_HBA_ATTR_MANUFACTURER_LEN);
|
|
|
|
|
|
|
|
/* SerialNumber */
|
|
|
|
entry = (struct fc_fdmi_attr_entry *)((char *)entry->value +
|
|
|
|
FC_FDMI_HBA_ATTR_MANUFACTURER_LEN);
|
|
|
|
len = FC_FDMI_ATTR_ENTRY_HEADER_LEN;
|
|
|
|
len += FC_FDMI_HBA_ATTR_SERIALNUMBER_LEN;
|
|
|
|
put_unaligned_be16(FC_FDMI_HBA_ATTR_SERIALNUMBER,
|
|
|
|
&entry->type);
|
|
|
|
put_unaligned_be16(len, &entry->len);
|
scsi: libfc: Work around -Warray-bounds warning
Building libfc with gcc -Warray-bounds identifies a number of cases in one
file where a strncpy() is performed into a single-byte character array:
In file included from include/linux/bitmap.h:9,
from include/linux/cpumask.h:12,
from include/linux/smp.h:13,
from include/linux/lockdep.h:14,
from include/linux/spinlock.h:59,
from include/linux/debugobjects.h:6,
from include/linux/timer.h:8,
from include/scsi/libfc.h:11,
from drivers/scsi/libfc/fc_elsct.c:17:
In function 'strncpy',
inlined from 'fc_ct_ms_fill.constprop' at drivers/scsi/libfc/fc_encode.h:235:3:
include/linux/string.h:290:30: warning: '__builtin_strncpy' offset [56, 135] from the object at 'pp' is out of the bounds of referenced subobject 'value' with type '__u8[1]' {aka 'unsigned char[1]'} at offset 56 [-Warray-bounds]
290 | #define __underlying_strncpy __builtin_strncpy
| ^
include/linux/string.h:300:9: note: in expansion of macro '__underlying_strncpy'
300 | return __underlying_strncpy(p, q, size);
| ^~~~~~~~~~~~~~~~~~~~
This is not a bug because the 1-byte array is used as an odd way to express
a variable-length data field here. I tried to convert it to a
flexible-array member, but in the end could not figure out why the
sizeof(struct fc_fdmi_???) are used the way they are, and how to properly
convert those.
Work around this instead by abstracting the string copy in a slightly
higher-level function fc_ct_hdr_fill() helper that strscpy() and memset()
to achieve the same result as strncpy() but does not require a
zero-terminated input and does not get checked for the array overflow
because gcc (so far) does not understand the behavior of strscpy().
Link: https://lore.kernel.org/r/20201026160705.3706396-2-arnd@kernel.org
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
2020-10-27 00:06:13 +08:00
|
|
|
fc_ct_ms_fill_attr(entry,
|
2012-01-23 09:30:05 +08:00
|
|
|
fc_host_serial_number(lport->host),
|
|
|
|
FC_FDMI_HBA_ATTR_SERIALNUMBER_LEN);
|
|
|
|
|
|
|
|
/* Model */
|
|
|
|
entry = (struct fc_fdmi_attr_entry *)((char *)entry->value +
|
|
|
|
FC_FDMI_HBA_ATTR_SERIALNUMBER_LEN);
|
|
|
|
len = FC_FDMI_ATTR_ENTRY_HEADER_LEN;
|
|
|
|
len += FC_FDMI_HBA_ATTR_MODEL_LEN;
|
|
|
|
put_unaligned_be16(FC_FDMI_HBA_ATTR_MODEL,
|
|
|
|
&entry->type);
|
|
|
|
put_unaligned_be16(len, &entry->len);
|
scsi: libfc: Work around -Warray-bounds warning
Building libfc with gcc -Warray-bounds identifies a number of cases in one
file where a strncpy() is performed into a single-byte character array:
In file included from include/linux/bitmap.h:9,
from include/linux/cpumask.h:12,
from include/linux/smp.h:13,
from include/linux/lockdep.h:14,
from include/linux/spinlock.h:59,
from include/linux/debugobjects.h:6,
from include/linux/timer.h:8,
from include/scsi/libfc.h:11,
from drivers/scsi/libfc/fc_elsct.c:17:
In function 'strncpy',
inlined from 'fc_ct_ms_fill.constprop' at drivers/scsi/libfc/fc_encode.h:235:3:
include/linux/string.h:290:30: warning: '__builtin_strncpy' offset [56, 135] from the object at 'pp' is out of the bounds of referenced subobject 'value' with type '__u8[1]' {aka 'unsigned char[1]'} at offset 56 [-Warray-bounds]
290 | #define __underlying_strncpy __builtin_strncpy
| ^
include/linux/string.h:300:9: note: in expansion of macro '__underlying_strncpy'
300 | return __underlying_strncpy(p, q, size);
| ^~~~~~~~~~~~~~~~~~~~
This is not a bug because the 1-byte array is used as an odd way to express
a variable-length data field here. I tried to convert it to a
flexible-array member, but in the end could not figure out why the
sizeof(struct fc_fdmi_???) are used the way they are, and how to properly
convert those.
Work around this instead by abstracting the string copy in a slightly
higher-level function fc_ct_hdr_fill() helper that strscpy() and memset()
to achieve the same result as strncpy() but does not require a
zero-terminated input and does not get checked for the array overflow
because gcc (so far) does not understand the behavior of strscpy().
Link: https://lore.kernel.org/r/20201026160705.3706396-2-arnd@kernel.org
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
2020-10-27 00:06:13 +08:00
|
|
|
fc_ct_ms_fill_attr(entry,
|
2012-01-23 09:30:05 +08:00
|
|
|
fc_host_model(lport->host),
|
|
|
|
FC_FDMI_HBA_ATTR_MODEL_LEN);
|
|
|
|
|
|
|
|
/* Model Description */
|
|
|
|
entry = (struct fc_fdmi_attr_entry *)((char *)entry->value +
|
|
|
|
FC_FDMI_HBA_ATTR_MODEL_LEN);
|
|
|
|
len = FC_FDMI_ATTR_ENTRY_HEADER_LEN;
|
|
|
|
len += FC_FDMI_HBA_ATTR_MODELDESCR_LEN;
|
|
|
|
put_unaligned_be16(FC_FDMI_HBA_ATTR_MODELDESCRIPTION,
|
|
|
|
&entry->type);
|
|
|
|
put_unaligned_be16(len, &entry->len);
|
scsi: libfc: Work around -Warray-bounds warning
Building libfc with gcc -Warray-bounds identifies a number of cases in one
file where a strncpy() is performed into a single-byte character array:
In file included from include/linux/bitmap.h:9,
from include/linux/cpumask.h:12,
from include/linux/smp.h:13,
from include/linux/lockdep.h:14,
from include/linux/spinlock.h:59,
from include/linux/debugobjects.h:6,
from include/linux/timer.h:8,
from include/scsi/libfc.h:11,
from drivers/scsi/libfc/fc_elsct.c:17:
In function 'strncpy',
inlined from 'fc_ct_ms_fill.constprop' at drivers/scsi/libfc/fc_encode.h:235:3:
include/linux/string.h:290:30: warning: '__builtin_strncpy' offset [56, 135] from the object at 'pp' is out of the bounds of referenced subobject 'value' with type '__u8[1]' {aka 'unsigned char[1]'} at offset 56 [-Warray-bounds]
290 | #define __underlying_strncpy __builtin_strncpy
| ^
include/linux/string.h:300:9: note: in expansion of macro '__underlying_strncpy'
300 | return __underlying_strncpy(p, q, size);
| ^~~~~~~~~~~~~~~~~~~~
This is not a bug because the 1-byte array is used as an odd way to express
a variable-length data field here. I tried to convert it to a
flexible-array member, but in the end could not figure out why the
sizeof(struct fc_fdmi_???) are used the way they are, and how to properly
convert those.
Work around this instead by abstracting the string copy in a slightly
higher-level function fc_ct_hdr_fill() helper that strscpy() and memset()
to achieve the same result as strncpy() but does not require a
zero-terminated input and does not get checked for the array overflow
because gcc (so far) does not understand the behavior of strscpy().
Link: https://lore.kernel.org/r/20201026160705.3706396-2-arnd@kernel.org
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
2020-10-27 00:06:13 +08:00
|
|
|
fc_ct_ms_fill_attr(entry,
|
2012-01-23 09:30:05 +08:00
|
|
|
fc_host_model_description(lport->host),
|
|
|
|
FC_FDMI_HBA_ATTR_MODELDESCR_LEN);
|
|
|
|
|
|
|
|
/* Hardware Version */
|
|
|
|
entry = (struct fc_fdmi_attr_entry *)((char *)entry->value +
|
|
|
|
FC_FDMI_HBA_ATTR_MODELDESCR_LEN);
|
|
|
|
len = FC_FDMI_ATTR_ENTRY_HEADER_LEN;
|
|
|
|
len += FC_FDMI_HBA_ATTR_HARDWAREVERSION_LEN;
|
|
|
|
put_unaligned_be16(FC_FDMI_HBA_ATTR_HARDWAREVERSION,
|
|
|
|
&entry->type);
|
|
|
|
put_unaligned_be16(len, &entry->len);
|
scsi: libfc: Work around -Warray-bounds warning
Building libfc with gcc -Warray-bounds identifies a number of cases in one
file where a strncpy() is performed into a single-byte character array:
In file included from include/linux/bitmap.h:9,
from include/linux/cpumask.h:12,
from include/linux/smp.h:13,
from include/linux/lockdep.h:14,
from include/linux/spinlock.h:59,
from include/linux/debugobjects.h:6,
from include/linux/timer.h:8,
from include/scsi/libfc.h:11,
from drivers/scsi/libfc/fc_elsct.c:17:
In function 'strncpy',
inlined from 'fc_ct_ms_fill.constprop' at drivers/scsi/libfc/fc_encode.h:235:3:
include/linux/string.h:290:30: warning: '__builtin_strncpy' offset [56, 135] from the object at 'pp' is out of the bounds of referenced subobject 'value' with type '__u8[1]' {aka 'unsigned char[1]'} at offset 56 [-Warray-bounds]
290 | #define __underlying_strncpy __builtin_strncpy
| ^
include/linux/string.h:300:9: note: in expansion of macro '__underlying_strncpy'
300 | return __underlying_strncpy(p, q, size);
| ^~~~~~~~~~~~~~~~~~~~
This is not a bug because the 1-byte array is used as an odd way to express
a variable-length data field here. I tried to convert it to a
flexible-array member, but in the end could not figure out why the
sizeof(struct fc_fdmi_???) are used the way they are, and how to properly
convert those.
Work around this instead by abstracting the string copy in a slightly
higher-level function fc_ct_hdr_fill() helper that strscpy() and memset()
to achieve the same result as strncpy() but does not require a
zero-terminated input and does not get checked for the array overflow
because gcc (so far) does not understand the behavior of strscpy().
Link: https://lore.kernel.org/r/20201026160705.3706396-2-arnd@kernel.org
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
2020-10-27 00:06:13 +08:00
|
|
|
fc_ct_ms_fill_attr(entry,
|
2012-01-23 09:30:05 +08:00
|
|
|
fc_host_hardware_version(lport->host),
|
|
|
|
FC_FDMI_HBA_ATTR_HARDWAREVERSION_LEN);
|
|
|
|
|
|
|
|
/* Driver Version */
|
|
|
|
entry = (struct fc_fdmi_attr_entry *)((char *)entry->value +
|
|
|
|
FC_FDMI_HBA_ATTR_HARDWAREVERSION_LEN);
|
|
|
|
len = FC_FDMI_ATTR_ENTRY_HEADER_LEN;
|
|
|
|
len += FC_FDMI_HBA_ATTR_DRIVERVERSION_LEN;
|
|
|
|
put_unaligned_be16(FC_FDMI_HBA_ATTR_DRIVERVERSION,
|
|
|
|
&entry->type);
|
|
|
|
put_unaligned_be16(len, &entry->len);
|
scsi: libfc: Work around -Warray-bounds warning
Building libfc with gcc -Warray-bounds identifies a number of cases in one
file where a strncpy() is performed into a single-byte character array:
In file included from include/linux/bitmap.h:9,
from include/linux/cpumask.h:12,
from include/linux/smp.h:13,
from include/linux/lockdep.h:14,
from include/linux/spinlock.h:59,
from include/linux/debugobjects.h:6,
from include/linux/timer.h:8,
from include/scsi/libfc.h:11,
from drivers/scsi/libfc/fc_elsct.c:17:
In function 'strncpy',
inlined from 'fc_ct_ms_fill.constprop' at drivers/scsi/libfc/fc_encode.h:235:3:
include/linux/string.h:290:30: warning: '__builtin_strncpy' offset [56, 135] from the object at 'pp' is out of the bounds of referenced subobject 'value' with type '__u8[1]' {aka 'unsigned char[1]'} at offset 56 [-Warray-bounds]
290 | #define __underlying_strncpy __builtin_strncpy
| ^
include/linux/string.h:300:9: note: in expansion of macro '__underlying_strncpy'
300 | return __underlying_strncpy(p, q, size);
| ^~~~~~~~~~~~~~~~~~~~
This is not a bug because the 1-byte array is used as an odd way to express
a variable-length data field here. I tried to convert it to a
flexible-array member, but in the end could not figure out why the
sizeof(struct fc_fdmi_???) are used the way they are, and how to properly
convert those.
Work around this instead by abstracting the string copy in a slightly
higher-level function fc_ct_hdr_fill() helper that strscpy() and memset()
to achieve the same result as strncpy() but does not require a
zero-terminated input and does not get checked for the array overflow
because gcc (so far) does not understand the behavior of strscpy().
Link: https://lore.kernel.org/r/20201026160705.3706396-2-arnd@kernel.org
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
2020-10-27 00:06:13 +08:00
|
|
|
fc_ct_ms_fill_attr(entry,
|
2012-01-23 09:30:05 +08:00
|
|
|
fc_host_driver_version(lport->host),
|
|
|
|
FC_FDMI_HBA_ATTR_DRIVERVERSION_LEN);
|
|
|
|
|
|
|
|
/* OptionROM Version */
|
|
|
|
entry = (struct fc_fdmi_attr_entry *)((char *)entry->value +
|
|
|
|
FC_FDMI_HBA_ATTR_DRIVERVERSION_LEN);
|
|
|
|
len = FC_FDMI_ATTR_ENTRY_HEADER_LEN;
|
|
|
|
len += FC_FDMI_HBA_ATTR_OPTIONROMVERSION_LEN;
|
|
|
|
put_unaligned_be16(FC_FDMI_HBA_ATTR_OPTIONROMVERSION,
|
|
|
|
&entry->type);
|
|
|
|
put_unaligned_be16(len, &entry->len);
|
scsi: libfc: Work around -Warray-bounds warning
Building libfc with gcc -Warray-bounds identifies a number of cases in one
file where a strncpy() is performed into a single-byte character array:
In file included from include/linux/bitmap.h:9,
from include/linux/cpumask.h:12,
from include/linux/smp.h:13,
from include/linux/lockdep.h:14,
from include/linux/spinlock.h:59,
from include/linux/debugobjects.h:6,
from include/linux/timer.h:8,
from include/scsi/libfc.h:11,
from drivers/scsi/libfc/fc_elsct.c:17:
In function 'strncpy',
inlined from 'fc_ct_ms_fill.constprop' at drivers/scsi/libfc/fc_encode.h:235:3:
include/linux/string.h:290:30: warning: '__builtin_strncpy' offset [56, 135] from the object at 'pp' is out of the bounds of referenced subobject 'value' with type '__u8[1]' {aka 'unsigned char[1]'} at offset 56 [-Warray-bounds]
290 | #define __underlying_strncpy __builtin_strncpy
| ^
include/linux/string.h:300:9: note: in expansion of macro '__underlying_strncpy'
300 | return __underlying_strncpy(p, q, size);
| ^~~~~~~~~~~~~~~~~~~~
This is not a bug because the 1-byte array is used as an odd way to express
a variable-length data field here. I tried to convert it to a
flexible-array member, but in the end could not figure out why the
sizeof(struct fc_fdmi_???) are used the way they are, and how to properly
convert those.
Work around this instead by abstracting the string copy in a slightly
higher-level function fc_ct_hdr_fill() helper that strscpy() and memset()
to achieve the same result as strncpy() but does not require a
zero-terminated input and does not get checked for the array overflow
because gcc (so far) does not understand the behavior of strscpy().
Link: https://lore.kernel.org/r/20201026160705.3706396-2-arnd@kernel.org
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
2020-10-27 00:06:13 +08:00
|
|
|
fc_ct_ms_fill_attr(entry,
|
2021-06-03 20:16:21 +08:00
|
|
|
"unknown",
|
2012-01-23 09:30:05 +08:00
|
|
|
FC_FDMI_HBA_ATTR_OPTIONROMVERSION_LEN);
|
|
|
|
|
|
|
|
/* Firmware Version */
|
|
|
|
entry = (struct fc_fdmi_attr_entry *)((char *)entry->value +
|
|
|
|
FC_FDMI_HBA_ATTR_OPTIONROMVERSION_LEN);
|
|
|
|
len = FC_FDMI_ATTR_ENTRY_HEADER_LEN;
|
|
|
|
len += FC_FDMI_HBA_ATTR_FIRMWAREVERSION_LEN;
|
|
|
|
put_unaligned_be16(FC_FDMI_HBA_ATTR_FIRMWAREVERSION,
|
|
|
|
&entry->type);
|
|
|
|
put_unaligned_be16(len, &entry->len);
|
scsi: libfc: Work around -Warray-bounds warning
Building libfc with gcc -Warray-bounds identifies a number of cases in one
file where a strncpy() is performed into a single-byte character array:
In file included from include/linux/bitmap.h:9,
from include/linux/cpumask.h:12,
from include/linux/smp.h:13,
from include/linux/lockdep.h:14,
from include/linux/spinlock.h:59,
from include/linux/debugobjects.h:6,
from include/linux/timer.h:8,
from include/scsi/libfc.h:11,
from drivers/scsi/libfc/fc_elsct.c:17:
In function 'strncpy',
inlined from 'fc_ct_ms_fill.constprop' at drivers/scsi/libfc/fc_encode.h:235:3:
include/linux/string.h:290:30: warning: '__builtin_strncpy' offset [56, 135] from the object at 'pp' is out of the bounds of referenced subobject 'value' with type '__u8[1]' {aka 'unsigned char[1]'} at offset 56 [-Warray-bounds]
290 | #define __underlying_strncpy __builtin_strncpy
| ^
include/linux/string.h:300:9: note: in expansion of macro '__underlying_strncpy'
300 | return __underlying_strncpy(p, q, size);
| ^~~~~~~~~~~~~~~~~~~~
This is not a bug because the 1-byte array is used as an odd way to express
a variable-length data field here. I tried to convert it to a
flexible-array member, but in the end could not figure out why the
sizeof(struct fc_fdmi_???) are used the way they are, and how to properly
convert those.
Work around this instead by abstracting the string copy in a slightly
higher-level function fc_ct_hdr_fill() helper that strscpy() and memset()
to achieve the same result as strncpy() but does not require a
zero-terminated input and does not get checked for the array overflow
because gcc (so far) does not understand the behavior of strscpy().
Link: https://lore.kernel.org/r/20201026160705.3706396-2-arnd@kernel.org
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
2020-10-27 00:06:13 +08:00
|
|
|
fc_ct_ms_fill_attr(entry,
|
2012-01-23 09:30:05 +08:00
|
|
|
fc_host_firmware_version(lport->host),
|
|
|
|
FC_FDMI_HBA_ATTR_FIRMWAREVERSION_LEN);
|
|
|
|
|
|
|
|
/* OS Name and Version */
|
|
|
|
entry = (struct fc_fdmi_attr_entry *)((char *)entry->value +
|
|
|
|
FC_FDMI_HBA_ATTR_FIRMWAREVERSION_LEN);
|
|
|
|
len = FC_FDMI_ATTR_ENTRY_HEADER_LEN;
|
|
|
|
len += FC_FDMI_HBA_ATTR_OSNAMEVERSION_LEN;
|
|
|
|
put_unaligned_be16(FC_FDMI_HBA_ATTR_OSNAMEVERSION,
|
|
|
|
&entry->type);
|
|
|
|
put_unaligned_be16(len, &entry->len);
|
|
|
|
snprintf((char *)&entry->value,
|
|
|
|
FC_FDMI_HBA_ATTR_OSNAMEVERSION_LEN,
|
|
|
|
"%s v%s",
|
|
|
|
init_utsname()->sysname,
|
|
|
|
init_utsname()->release);
|
2021-06-03 20:16:21 +08:00
|
|
|
|
|
|
|
/* Max CT payload */
|
|
|
|
entry = (struct fc_fdmi_attr_entry *)((char *)entry->value +
|
|
|
|
FC_FDMI_HBA_ATTR_OSNAMEVERSION_LEN);
|
|
|
|
len = FC_FDMI_ATTR_ENTRY_HEADER_LEN;
|
|
|
|
len += FC_FDMI_HBA_ATTR_MAXCTPAYLOAD_LEN;
|
|
|
|
put_unaligned_be16(FC_FDMI_HBA_ATTR_MAXCTPAYLOAD,
|
|
|
|
&entry->type);
|
|
|
|
put_unaligned_be16(len, &entry->len);
|
|
|
|
put_unaligned_be32(fc_host_max_ct_payload(lport->host),
|
|
|
|
&entry->value);
|
|
|
|
|
|
|
|
if (fc_host->fdmi_version == FDMI_V2) {
|
|
|
|
/* Node symbolic name */
|
|
|
|
entry = (struct fc_fdmi_attr_entry *)((char *)entry->value +
|
|
|
|
FC_FDMI_HBA_ATTR_MAXCTPAYLOAD_LEN);
|
|
|
|
len = FC_FDMI_ATTR_ENTRY_HEADER_LEN;
|
|
|
|
len += FC_FDMI_HBA_ATTR_NODESYMBLNAME_LEN;
|
|
|
|
put_unaligned_be16(FC_FDMI_HBA_ATTR_NODESYMBLNAME,
|
|
|
|
&entry->type);
|
|
|
|
put_unaligned_be16(len, &entry->len);
|
|
|
|
fc_ct_ms_fill_attr(entry,
|
|
|
|
fc_host_symbolic_name(lport->host),
|
|
|
|
FC_FDMI_HBA_ATTR_NODESYMBLNAME_LEN);
|
|
|
|
|
|
|
|
/* Vendor specific info */
|
|
|
|
entry = (struct fc_fdmi_attr_entry *)((char *)entry->value +
|
|
|
|
FC_FDMI_HBA_ATTR_NODESYMBLNAME_LEN);
|
|
|
|
len = FC_FDMI_ATTR_ENTRY_HEADER_LEN;
|
|
|
|
len += FC_FDMI_HBA_ATTR_VENDORSPECIFICINFO_LEN;
|
|
|
|
put_unaligned_be16(FC_FDMI_HBA_ATTR_VENDORSPECIFICINFO,
|
|
|
|
&entry->type);
|
|
|
|
put_unaligned_be16(len, &entry->len);
|
|
|
|
put_unaligned_be32(0,
|
|
|
|
&entry->value);
|
|
|
|
|
|
|
|
/* Number of ports */
|
|
|
|
entry = (struct fc_fdmi_attr_entry *)((char *)entry->value +
|
|
|
|
FC_FDMI_HBA_ATTR_VENDORSPECIFICINFO_LEN);
|
|
|
|
len = FC_FDMI_ATTR_ENTRY_HEADER_LEN;
|
|
|
|
len += FC_FDMI_HBA_ATTR_NUMBEROFPORTS_LEN;
|
|
|
|
put_unaligned_be16(FC_FDMI_HBA_ATTR_NUMBEROFPORTS,
|
|
|
|
&entry->type);
|
|
|
|
put_unaligned_be16(len, &entry->len);
|
|
|
|
put_unaligned_be32(fc_host_num_ports(lport->host),
|
|
|
|
&entry->value);
|
|
|
|
|
|
|
|
/* Fabric name */
|
|
|
|
entry = (struct fc_fdmi_attr_entry *)((char *)entry->value +
|
|
|
|
FC_FDMI_HBA_ATTR_NUMBEROFPORTS_LEN);
|
|
|
|
len = FC_FDMI_ATTR_ENTRY_HEADER_LEN;
|
|
|
|
len += FC_FDMI_HBA_ATTR_FABRICNAME_LEN;
|
|
|
|
put_unaligned_be16(FC_FDMI_HBA_ATTR_FABRICNAME,
|
|
|
|
&entry->type);
|
|
|
|
put_unaligned_be16(len, &entry->len);
|
|
|
|
put_unaligned_be64(fc_host_fabric_name(lport->host),
|
|
|
|
&entry->value);
|
|
|
|
|
|
|
|
/* BIOS version */
|
|
|
|
entry = (struct fc_fdmi_attr_entry *)((char *)entry->value +
|
|
|
|
FC_FDMI_HBA_ATTR_FABRICNAME_LEN);
|
|
|
|
len = FC_FDMI_ATTR_ENTRY_HEADER_LEN;
|
|
|
|
len += FC_FDMI_HBA_ATTR_BIOSVERSION_LEN;
|
|
|
|
put_unaligned_be16(FC_FDMI_HBA_ATTR_BIOSVERSION,
|
|
|
|
&entry->type);
|
|
|
|
put_unaligned_be16(len, &entry->len);
|
|
|
|
fc_ct_ms_fill_attr(entry,
|
|
|
|
fc_host_bootbios_version(lport->host),
|
|
|
|
FC_FDMI_HBA_ATTR_BIOSVERSION_LEN);
|
|
|
|
|
|
|
|
/* BIOS state */
|
|
|
|
entry = (struct fc_fdmi_attr_entry *)((char *)entry->value +
|
|
|
|
FC_FDMI_HBA_ATTR_BIOSVERSION_LEN);
|
|
|
|
len = FC_FDMI_ATTR_ENTRY_HEADER_LEN;
|
|
|
|
len += FC_FDMI_HBA_ATTR_BIOSSTATE_LEN;
|
|
|
|
put_unaligned_be16(FC_FDMI_HBA_ATTR_BIOSSTATE,
|
|
|
|
&entry->type);
|
|
|
|
put_unaligned_be16(len, &entry->len);
|
|
|
|
put_unaligned_be32(fc_host_bootbios_state(lport->host),
|
|
|
|
&entry->value);
|
|
|
|
|
|
|
|
/* Vendor identifier */
|
|
|
|
entry = (struct fc_fdmi_attr_entry *)((char *)entry->value +
|
|
|
|
FC_FDMI_HBA_ATTR_BIOSSTATE_LEN);
|
|
|
|
len = FC_FDMI_ATTR_ENTRY_HEADER_LEN;
|
|
|
|
len += FC_FDMI_HBA_ATTR_VENDORIDENTIFIER_LEN;
|
|
|
|
put_unaligned_be16(FC_FDMI_HBA_ATTR_VENDORIDENTIFIER,
|
|
|
|
&entry->type);
|
|
|
|
put_unaligned_be16(len, &entry->len);
|
|
|
|
fc_ct_ms_fill_attr(entry,
|
|
|
|
fc_host_vendor_identifier(lport->host),
|
|
|
|
FC_FDMI_HBA_ATTR_VENDORIDENTIFIER_LEN);
|
|
|
|
}
|
|
|
|
|
2012-01-23 09:30:05 +08:00
|
|
|
break;
|
|
|
|
case FC_FDMI_RPA:
|
|
|
|
numattrs = 6;
|
|
|
|
len = sizeof(struct fc_fdmi_rpa);
|
|
|
|
len -= sizeof(struct fc_fdmi_attr_entry);
|
|
|
|
len += (numattrs * FC_FDMI_ATTR_ENTRY_HEADER_LEN);
|
|
|
|
len += FC_FDMI_PORT_ATTR_FC4TYPES_LEN;
|
|
|
|
len += FC_FDMI_PORT_ATTR_SUPPORTEDSPEED_LEN;
|
|
|
|
len += FC_FDMI_PORT_ATTR_CURRENTPORTSPEED_LEN;
|
|
|
|
len += FC_FDMI_PORT_ATTR_MAXFRAMESIZE_LEN;
|
|
|
|
len += FC_FDMI_PORT_ATTR_OSDEVICENAME_LEN;
|
|
|
|
len += FC_FDMI_PORT_ATTR_HOSTNAME_LEN;
|
2021-06-03 20:16:21 +08:00
|
|
|
|
|
|
|
|
|
|
|
if (fc_host->fdmi_version == FDMI_V2) {
|
|
|
|
numattrs += 10;
|
|
|
|
|
|
|
|
len += FC_FDMI_PORT_ATTR_NODENAME_LEN;
|
|
|
|
len += FC_FDMI_PORT_ATTR_PORTNAME_LEN;
|
|
|
|
len += FC_FDMI_PORT_ATTR_SYMBOLICNAME_LEN;
|
|
|
|
len += FC_FDMI_PORT_ATTR_PORTTYPE_LEN;
|
|
|
|
len += FC_FDMI_PORT_ATTR_SUPPORTEDCLASSSRVC_LEN;
|
|
|
|
len += FC_FDMI_PORT_ATTR_FABRICNAME_LEN;
|
|
|
|
len += FC_FDMI_PORT_ATTR_CURRENTFC4TYPE_LEN;
|
|
|
|
len += FC_FDMI_PORT_ATTR_PORTSTATE_LEN;
|
|
|
|
len += FC_FDMI_PORT_ATTR_DISCOVEREDPORTS_LEN;
|
|
|
|
len += FC_FDMI_PORT_ATTR_PORTID_LEN;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2012-01-23 09:30:05 +08:00
|
|
|
ct = fc_ct_hdr_fill(fp, op, len, FC_FST_MGMT,
|
|
|
|
FC_FDMI_SUBTYPE);
|
|
|
|
|
|
|
|
/* Port Name */
|
|
|
|
put_unaligned_be64(lport->wwpn,
|
|
|
|
&ct->payload.rpa.port.portname);
|
|
|
|
|
|
|
|
/* Port Attributes */
|
|
|
|
put_unaligned_be32(numattrs,
|
|
|
|
&ct->payload.rpa.hba_attrs.numattrs);
|
|
|
|
|
|
|
|
hba_attrs = &ct->payload.rpa.hba_attrs;
|
|
|
|
entry = (struct fc_fdmi_attr_entry *)hba_attrs->attr;
|
|
|
|
|
|
|
|
/* FC4 types */
|
|
|
|
len = FC_FDMI_ATTR_ENTRY_HEADER_LEN;
|
|
|
|
len += FC_FDMI_PORT_ATTR_FC4TYPES_LEN;
|
|
|
|
put_unaligned_be16(FC_FDMI_PORT_ATTR_FC4TYPES,
|
|
|
|
&entry->type);
|
|
|
|
put_unaligned_be16(len, &entry->len);
|
|
|
|
memcpy(&entry->value, fc_host_supported_fc4s(lport->host),
|
|
|
|
FC_FDMI_PORT_ATTR_FC4TYPES_LEN);
|
|
|
|
|
|
|
|
/* Supported Speed */
|
|
|
|
entry = (struct fc_fdmi_attr_entry *)((char *)entry->value +
|
|
|
|
FC_FDMI_PORT_ATTR_FC4TYPES_LEN);
|
|
|
|
len = FC_FDMI_ATTR_ENTRY_HEADER_LEN;
|
|
|
|
len += FC_FDMI_PORT_ATTR_SUPPORTEDSPEED_LEN;
|
|
|
|
put_unaligned_be16(FC_FDMI_PORT_ATTR_SUPPORTEDSPEED,
|
|
|
|
&entry->type);
|
|
|
|
put_unaligned_be16(len, &entry->len);
|
|
|
|
|
|
|
|
put_unaligned_be32(fc_host_supported_speeds(lport->host),
|
|
|
|
&entry->value);
|
|
|
|
|
|
|
|
/* Current Port Speed */
|
|
|
|
entry = (struct fc_fdmi_attr_entry *)((char *)entry->value +
|
|
|
|
FC_FDMI_PORT_ATTR_SUPPORTEDSPEED_LEN);
|
|
|
|
len = FC_FDMI_ATTR_ENTRY_HEADER_LEN;
|
|
|
|
len += FC_FDMI_PORT_ATTR_CURRENTPORTSPEED_LEN;
|
|
|
|
put_unaligned_be16(FC_FDMI_PORT_ATTR_CURRENTPORTSPEED,
|
|
|
|
&entry->type);
|
|
|
|
put_unaligned_be16(len, &entry->len);
|
|
|
|
put_unaligned_be32(lport->link_speed,
|
|
|
|
&entry->value);
|
|
|
|
|
|
|
|
/* Max Frame Size */
|
|
|
|
entry = (struct fc_fdmi_attr_entry *)((char *)entry->value +
|
|
|
|
FC_FDMI_PORT_ATTR_CURRENTPORTSPEED_LEN);
|
|
|
|
len = FC_FDMI_ATTR_ENTRY_HEADER_LEN;
|
|
|
|
len += FC_FDMI_PORT_ATTR_MAXFRAMESIZE_LEN;
|
|
|
|
put_unaligned_be16(FC_FDMI_PORT_ATTR_MAXFRAMESIZE,
|
|
|
|
&entry->type);
|
|
|
|
put_unaligned_be16(len, &entry->len);
|
|
|
|
put_unaligned_be32(fc_host_maxframe_size(lport->host),
|
|
|
|
&entry->value);
|
|
|
|
|
|
|
|
/* OS Device Name */
|
|
|
|
entry = (struct fc_fdmi_attr_entry *)((char *)entry->value +
|
|
|
|
FC_FDMI_PORT_ATTR_MAXFRAMESIZE_LEN);
|
|
|
|
len = FC_FDMI_ATTR_ENTRY_HEADER_LEN;
|
|
|
|
len += FC_FDMI_PORT_ATTR_OSDEVICENAME_LEN;
|
|
|
|
put_unaligned_be16(FC_FDMI_PORT_ATTR_OSDEVICENAME,
|
|
|
|
&entry->type);
|
|
|
|
put_unaligned_be16(len, &entry->len);
|
|
|
|
/* Use the sysfs device name */
|
scsi: libfc: Work around -Warray-bounds warning
Building libfc with gcc -Warray-bounds identifies a number of cases in one
file where a strncpy() is performed into a single-byte character array:
In file included from include/linux/bitmap.h:9,
from include/linux/cpumask.h:12,
from include/linux/smp.h:13,
from include/linux/lockdep.h:14,
from include/linux/spinlock.h:59,
from include/linux/debugobjects.h:6,
from include/linux/timer.h:8,
from include/scsi/libfc.h:11,
from drivers/scsi/libfc/fc_elsct.c:17:
In function 'strncpy',
inlined from 'fc_ct_ms_fill.constprop' at drivers/scsi/libfc/fc_encode.h:235:3:
include/linux/string.h:290:30: warning: '__builtin_strncpy' offset [56, 135] from the object at 'pp' is out of the bounds of referenced subobject 'value' with type '__u8[1]' {aka 'unsigned char[1]'} at offset 56 [-Warray-bounds]
290 | #define __underlying_strncpy __builtin_strncpy
| ^
include/linux/string.h:300:9: note: in expansion of macro '__underlying_strncpy'
300 | return __underlying_strncpy(p, q, size);
| ^~~~~~~~~~~~~~~~~~~~
This is not a bug because the 1-byte array is used as an odd way to express
a variable-length data field here. I tried to convert it to a
flexible-array member, but in the end could not figure out why the
sizeof(struct fc_fdmi_???) are used the way they are, and how to properly
convert those.
Work around this instead by abstracting the string copy in a slightly
higher-level function fc_ct_hdr_fill() helper that strscpy() and memset()
to achieve the same result as strncpy() but does not require a
zero-terminated input and does not get checked for the array overflow
because gcc (so far) does not understand the behavior of strscpy().
Link: https://lore.kernel.org/r/20201026160705.3706396-2-arnd@kernel.org
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
2020-10-27 00:06:13 +08:00
|
|
|
fc_ct_ms_fill_attr(entry,
|
2012-01-23 09:30:05 +08:00
|
|
|
dev_name(&lport->host->shost_gendev),
|
|
|
|
strnlen(dev_name(&lport->host->shost_gendev),
|
|
|
|
FC_FDMI_PORT_ATTR_HOSTNAME_LEN));
|
|
|
|
|
|
|
|
/* Host Name */
|
|
|
|
entry = (struct fc_fdmi_attr_entry *)((char *)entry->value +
|
|
|
|
FC_FDMI_PORT_ATTR_OSDEVICENAME_LEN);
|
|
|
|
len = FC_FDMI_ATTR_ENTRY_HEADER_LEN;
|
|
|
|
len += FC_FDMI_PORT_ATTR_HOSTNAME_LEN;
|
|
|
|
put_unaligned_be16(FC_FDMI_PORT_ATTR_HOSTNAME,
|
|
|
|
&entry->type);
|
|
|
|
put_unaligned_be16(len, &entry->len);
|
|
|
|
if (strlen(fc_host_system_hostname(lport->host)))
|
scsi: libfc: Work around -Warray-bounds warning
Building libfc with gcc -Warray-bounds identifies a number of cases in one
file where a strncpy() is performed into a single-byte character array:
In file included from include/linux/bitmap.h:9,
from include/linux/cpumask.h:12,
from include/linux/smp.h:13,
from include/linux/lockdep.h:14,
from include/linux/spinlock.h:59,
from include/linux/debugobjects.h:6,
from include/linux/timer.h:8,
from include/scsi/libfc.h:11,
from drivers/scsi/libfc/fc_elsct.c:17:
In function 'strncpy',
inlined from 'fc_ct_ms_fill.constprop' at drivers/scsi/libfc/fc_encode.h:235:3:
include/linux/string.h:290:30: warning: '__builtin_strncpy' offset [56, 135] from the object at 'pp' is out of the bounds of referenced subobject 'value' with type '__u8[1]' {aka 'unsigned char[1]'} at offset 56 [-Warray-bounds]
290 | #define __underlying_strncpy __builtin_strncpy
| ^
include/linux/string.h:300:9: note: in expansion of macro '__underlying_strncpy'
300 | return __underlying_strncpy(p, q, size);
| ^~~~~~~~~~~~~~~~~~~~
This is not a bug because the 1-byte array is used as an odd way to express
a variable-length data field here. I tried to convert it to a
flexible-array member, but in the end could not figure out why the
sizeof(struct fc_fdmi_???) are used the way they are, and how to properly
convert those.
Work around this instead by abstracting the string copy in a slightly
higher-level function fc_ct_hdr_fill() helper that strscpy() and memset()
to achieve the same result as strncpy() but does not require a
zero-terminated input and does not get checked for the array overflow
because gcc (so far) does not understand the behavior of strscpy().
Link: https://lore.kernel.org/r/20201026160705.3706396-2-arnd@kernel.org
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
2020-10-27 00:06:13 +08:00
|
|
|
fc_ct_ms_fill_attr(entry,
|
2012-01-23 09:30:05 +08:00
|
|
|
fc_host_system_hostname(lport->host),
|
|
|
|
strnlen(fc_host_system_hostname(lport->host),
|
|
|
|
FC_FDMI_PORT_ATTR_HOSTNAME_LEN));
|
|
|
|
else
|
scsi: libfc: Work around -Warray-bounds warning
Building libfc with gcc -Warray-bounds identifies a number of cases in one
file where a strncpy() is performed into a single-byte character array:
In file included from include/linux/bitmap.h:9,
from include/linux/cpumask.h:12,
from include/linux/smp.h:13,
from include/linux/lockdep.h:14,
from include/linux/spinlock.h:59,
from include/linux/debugobjects.h:6,
from include/linux/timer.h:8,
from include/scsi/libfc.h:11,
from drivers/scsi/libfc/fc_elsct.c:17:
In function 'strncpy',
inlined from 'fc_ct_ms_fill.constprop' at drivers/scsi/libfc/fc_encode.h:235:3:
include/linux/string.h:290:30: warning: '__builtin_strncpy' offset [56, 135] from the object at 'pp' is out of the bounds of referenced subobject 'value' with type '__u8[1]' {aka 'unsigned char[1]'} at offset 56 [-Warray-bounds]
290 | #define __underlying_strncpy __builtin_strncpy
| ^
include/linux/string.h:300:9: note: in expansion of macro '__underlying_strncpy'
300 | return __underlying_strncpy(p, q, size);
| ^~~~~~~~~~~~~~~~~~~~
This is not a bug because the 1-byte array is used as an odd way to express
a variable-length data field here. I tried to convert it to a
flexible-array member, but in the end could not figure out why the
sizeof(struct fc_fdmi_???) are used the way they are, and how to properly
convert those.
Work around this instead by abstracting the string copy in a slightly
higher-level function fc_ct_hdr_fill() helper that strscpy() and memset()
to achieve the same result as strncpy() but does not require a
zero-terminated input and does not get checked for the array overflow
because gcc (so far) does not understand the behavior of strscpy().
Link: https://lore.kernel.org/r/20201026160705.3706396-2-arnd@kernel.org
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
2020-10-27 00:06:13 +08:00
|
|
|
fc_ct_ms_fill_attr(entry,
|
2012-01-23 09:30:05 +08:00
|
|
|
init_utsname()->nodename,
|
|
|
|
FC_FDMI_PORT_ATTR_HOSTNAME_LEN);
|
2021-06-03 20:16:21 +08:00
|
|
|
|
|
|
|
|
|
|
|
if (fc_host->fdmi_version == FDMI_V2) {
|
|
|
|
|
|
|
|
/* Node name */
|
|
|
|
entry = (struct fc_fdmi_attr_entry *)((char *)entry->value +
|
|
|
|
FC_FDMI_PORT_ATTR_HOSTNAME_LEN);
|
|
|
|
len = FC_FDMI_ATTR_ENTRY_HEADER_LEN;
|
|
|
|
len += FC_FDMI_PORT_ATTR_NODENAME_LEN;
|
|
|
|
put_unaligned_be16(FC_FDMI_PORT_ATTR_NODENAME,
|
|
|
|
&entry->type);
|
|
|
|
put_unaligned_be16(len, &entry->len);
|
|
|
|
put_unaligned_be64(fc_host_node_name(lport->host),
|
|
|
|
&entry->value);
|
|
|
|
|
|
|
|
/* Port name */
|
|
|
|
entry = (struct fc_fdmi_attr_entry *)((char *)entry->value +
|
|
|
|
FC_FDMI_PORT_ATTR_NODENAME_LEN);
|
|
|
|
len = FC_FDMI_ATTR_ENTRY_HEADER_LEN;
|
|
|
|
len += FC_FDMI_PORT_ATTR_PORTNAME_LEN;
|
|
|
|
put_unaligned_be16(FC_FDMI_PORT_ATTR_PORTNAME,
|
|
|
|
&entry->type);
|
|
|
|
put_unaligned_be16(len, &entry->len);
|
|
|
|
put_unaligned_be64(lport->wwpn,
|
|
|
|
&entry->value);
|
|
|
|
|
|
|
|
/* Port symbolic name */
|
|
|
|
entry = (struct fc_fdmi_attr_entry *)((char *)entry->value +
|
|
|
|
FC_FDMI_PORT_ATTR_PORTNAME_LEN);
|
|
|
|
len = FC_FDMI_ATTR_ENTRY_HEADER_LEN;
|
|
|
|
len += FC_FDMI_PORT_ATTR_SYMBOLICNAME_LEN;
|
|
|
|
put_unaligned_be16(FC_FDMI_PORT_ATTR_SYMBOLICNAME,
|
|
|
|
&entry->type);
|
|
|
|
put_unaligned_be16(len, &entry->len);
|
|
|
|
fc_ct_ms_fill_attr(entry,
|
|
|
|
fc_host_symbolic_name(lport->host),
|
|
|
|
FC_FDMI_PORT_ATTR_SYMBOLICNAME_LEN);
|
|
|
|
|
|
|
|
/* Port type */
|
|
|
|
entry = (struct fc_fdmi_attr_entry *)((char *)entry->value +
|
|
|
|
FC_FDMI_PORT_ATTR_SYMBOLICNAME_LEN);
|
|
|
|
len = FC_FDMI_ATTR_ENTRY_HEADER_LEN;
|
|
|
|
len += FC_FDMI_PORT_ATTR_PORTTYPE_LEN;
|
|
|
|
put_unaligned_be16(FC_FDMI_PORT_ATTR_PORTTYPE,
|
|
|
|
&entry->type);
|
|
|
|
put_unaligned_be16(len, &entry->len);
|
|
|
|
put_unaligned_be32(fc_host_port_type(lport->host),
|
|
|
|
&entry->value);
|
|
|
|
|
|
|
|
/* Supported class of service */
|
|
|
|
entry = (struct fc_fdmi_attr_entry *)((char *)entry->value +
|
|
|
|
FC_FDMI_PORT_ATTR_PORTTYPE_LEN);
|
|
|
|
len = FC_FDMI_ATTR_ENTRY_HEADER_LEN;
|
|
|
|
len += FC_FDMI_PORT_ATTR_SUPPORTEDCLASSSRVC_LEN;
|
|
|
|
put_unaligned_be16(FC_FDMI_PORT_ATTR_SUPPORTEDCLASSSRVC,
|
|
|
|
&entry->type);
|
|
|
|
put_unaligned_be16(len, &entry->len);
|
|
|
|
put_unaligned_be32(fc_host_supported_classes(lport->host),
|
|
|
|
&entry->value);
|
|
|
|
|
|
|
|
/* Port Fabric name */
|
|
|
|
entry = (struct fc_fdmi_attr_entry *)((char *)entry->value +
|
|
|
|
FC_FDMI_PORT_ATTR_SUPPORTEDCLASSSRVC_LEN);
|
|
|
|
len = FC_FDMI_ATTR_ENTRY_HEADER_LEN;
|
|
|
|
len += FC_FDMI_PORT_ATTR_FABRICNAME_LEN;
|
|
|
|
put_unaligned_be16(FC_FDMI_PORT_ATTR_FABRICNAME,
|
|
|
|
&entry->type);
|
|
|
|
put_unaligned_be16(len, &entry->len);
|
|
|
|
put_unaligned_be64(fc_host_fabric_name(lport->host),
|
|
|
|
&entry->value);
|
|
|
|
|
|
|
|
/* Port active FC-4 */
|
|
|
|
entry = (struct fc_fdmi_attr_entry *)((char *)entry->value +
|
|
|
|
FC_FDMI_PORT_ATTR_FABRICNAME_LEN);
|
|
|
|
len = FC_FDMI_ATTR_ENTRY_HEADER_LEN;
|
|
|
|
len += FC_FDMI_PORT_ATTR_CURRENTFC4TYPE_LEN;
|
|
|
|
put_unaligned_be16(FC_FDMI_PORT_ATTR_CURRENTFC4TYPE,
|
|
|
|
&entry->type);
|
|
|
|
put_unaligned_be16(len, &entry->len);
|
|
|
|
memcpy(&entry->value, fc_host_active_fc4s(lport->host),
|
|
|
|
FC_FDMI_PORT_ATTR_CURRENTFC4TYPE_LEN);
|
|
|
|
|
|
|
|
/* Port state */
|
|
|
|
entry = (struct fc_fdmi_attr_entry *)((char *)entry->value +
|
|
|
|
FC_FDMI_PORT_ATTR_CURRENTFC4TYPE_LEN);
|
|
|
|
len = FC_FDMI_ATTR_ENTRY_HEADER_LEN;
|
|
|
|
len += FC_FDMI_PORT_ATTR_PORTSTATE_LEN;
|
|
|
|
put_unaligned_be16(FC_FDMI_PORT_ATTR_PORTSTATE,
|
|
|
|
&entry->type);
|
|
|
|
put_unaligned_be16(len, &entry->len);
|
|
|
|
put_unaligned_be32(fc_host_port_state(lport->host),
|
|
|
|
&entry->value);
|
|
|
|
|
|
|
|
/* Discovered ports */
|
|
|
|
entry = (struct fc_fdmi_attr_entry *)((char *)entry->value +
|
|
|
|
FC_FDMI_PORT_ATTR_PORTSTATE_LEN);
|
|
|
|
len = FC_FDMI_ATTR_ENTRY_HEADER_LEN;
|
|
|
|
len += FC_FDMI_PORT_ATTR_DISCOVEREDPORTS_LEN;
|
|
|
|
put_unaligned_be16(FC_FDMI_PORT_ATTR_DISCOVEREDPORTS,
|
|
|
|
&entry->type);
|
|
|
|
put_unaligned_be16(len, &entry->len);
|
|
|
|
put_unaligned_be32(fc_host_num_discovered_ports(lport->host),
|
|
|
|
&entry->value);
|
|
|
|
|
|
|
|
/* Port ID */
|
|
|
|
entry = (struct fc_fdmi_attr_entry *)((char *)entry->value +
|
|
|
|
FC_FDMI_PORT_ATTR_DISCOVEREDPORTS_LEN);
|
|
|
|
len = FC_FDMI_ATTR_ENTRY_HEADER_LEN;
|
|
|
|
len += FC_FDMI_PORT_ATTR_PORTID_LEN;
|
|
|
|
put_unaligned_be16(FC_FDMI_PORT_ATTR_PORTID,
|
|
|
|
&entry->type);
|
|
|
|
put_unaligned_be16(len, &entry->len);
|
|
|
|
put_unaligned_be32(fc_host_port_id(lport->host),
|
|
|
|
&entry->value);
|
|
|
|
}
|
|
|
|
|
2012-01-23 09:30:05 +08:00
|
|
|
break;
|
|
|
|
case FC_FDMI_DPRT:
|
|
|
|
len = sizeof(struct fc_fdmi_dprt);
|
|
|
|
ct = fc_ct_hdr_fill(fp, op, len, FC_FST_MGMT,
|
|
|
|
FC_FDMI_SUBTYPE);
|
|
|
|
/* Port Name */
|
|
|
|
put_unaligned_be64(lport->wwpn,
|
|
|
|
&ct->payload.dprt.port.portname);
|
|
|
|
break;
|
|
|
|
case FC_FDMI_DHBA:
|
|
|
|
len = sizeof(struct fc_fdmi_dhba);
|
|
|
|
ct = fc_ct_hdr_fill(fp, op, len, FC_FST_MGMT,
|
|
|
|
FC_FDMI_SUBTYPE);
|
|
|
|
/* HBA Identifier */
|
|
|
|
put_unaligned_be64(lport->wwpn, &ct->payload.dhba.hbaid.id);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
*r_ctl = FC_RCTL_DD_UNSOL_CTL;
|
|
|
|
*fh_type = FC_TYPE_CT;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-01-23 09:30:00 +08:00
|
|
|
/**
|
|
|
|
* fc_ct_fill() - Fill in a common transport service request frame
|
|
|
|
* @lport: local port.
|
|
|
|
* @fc_id: FC_ID of non-destination rport for GPN_ID and similar inquiries.
|
|
|
|
* @fp: frame to contain payload.
|
|
|
|
* @op: CT opcode.
|
|
|
|
* @r_ctl: pointer to FC header R_CTL.
|
|
|
|
* @fh_type: pointer to FC-4 type.
|
|
|
|
*/
|
|
|
|
static inline int fc_ct_fill(struct fc_lport *lport,
|
|
|
|
u32 fc_id, struct fc_frame *fp,
|
|
|
|
unsigned int op, enum fc_rctl *r_ctl,
|
|
|
|
enum fc_fh_type *fh_type, u32 *did)
|
|
|
|
{
|
|
|
|
int rc = -EINVAL;
|
|
|
|
|
|
|
|
switch (fc_id) {
|
2012-01-23 09:30:05 +08:00
|
|
|
case FC_FID_MGMT_SERV:
|
|
|
|
rc = fc_ct_ms_fill(lport, fc_id, fp, op, r_ctl, fh_type);
|
|
|
|
*did = FC_FID_MGMT_SERV;
|
|
|
|
break;
|
2012-01-23 09:30:00 +08:00
|
|
|
case FC_FID_DIR_SERV:
|
|
|
|
default:
|
|
|
|
rc = fc_ct_ns_fill(lport, fc_id, fp, op, r_ctl, fh_type);
|
|
|
|
*did = FC_FID_DIR_SERV;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
2008-12-10 07:10:17 +08:00
|
|
|
/**
|
|
|
|
* fc_plogi_fill - Fill in plogi request frame
|
|
|
|
*/
|
|
|
|
static inline void fc_plogi_fill(struct fc_lport *lport, struct fc_frame *fp,
|
|
|
|
unsigned int op)
|
|
|
|
{
|
|
|
|
struct fc_els_flogi *plogi;
|
|
|
|
struct fc_els_csp *csp;
|
|
|
|
struct fc_els_cssp *cp;
|
|
|
|
|
|
|
|
plogi = fc_frame_payload_get(fp, sizeof(*plogi));
|
|
|
|
memset(plogi, 0, sizeof(*plogi));
|
|
|
|
plogi->fl_cmd = (u8) op;
|
|
|
|
put_unaligned_be64(lport->wwpn, &plogi->fl_wwpn);
|
|
|
|
put_unaligned_be64(lport->wwnn, &plogi->fl_wwnn);
|
|
|
|
|
|
|
|
csp = &plogi->fl_csp;
|
|
|
|
csp->sp_hi_ver = 0x20;
|
|
|
|
csp->sp_lo_ver = 0x20;
|
|
|
|
csp->sp_bb_cred = htons(10); /* this gets set by gateway */
|
|
|
|
csp->sp_bb_data = htons((u16) lport->mfs);
|
|
|
|
cp = &plogi->fl_cssp[3 - 1]; /* class 3 parameters */
|
|
|
|
cp->cp_class = htons(FC_CPC_VALID | FC_CPC_SEQ);
|
|
|
|
csp->sp_features = htons(FC_SP_FT_CIRO);
|
|
|
|
csp->sp_tot_seq = htons(255); /* seq. we accept */
|
|
|
|
csp->sp_rel_off = htons(0x1f);
|
|
|
|
csp->sp_e_d_tov = htonl(lport->e_d_tov);
|
|
|
|
|
|
|
|
cp->cp_rdfs = htons((u16) lport->mfs);
|
|
|
|
cp->cp_con_seq = htons(255);
|
|
|
|
cp->cp_open_seq = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* fc_flogi_fill - Fill in a flogi request frame.
|
|
|
|
*/
|
|
|
|
static inline void fc_flogi_fill(struct fc_lport *lport, struct fc_frame *fp)
|
|
|
|
{
|
|
|
|
struct fc_els_csp *sp;
|
|
|
|
struct fc_els_cssp *cp;
|
|
|
|
struct fc_els_flogi *flogi;
|
|
|
|
|
|
|
|
flogi = fc_frame_payload_get(fp, sizeof(*flogi));
|
|
|
|
memset(flogi, 0, sizeof(*flogi));
|
|
|
|
flogi->fl_cmd = (u8) ELS_FLOGI;
|
|
|
|
put_unaligned_be64(lport->wwpn, &flogi->fl_wwpn);
|
|
|
|
put_unaligned_be64(lport->wwnn, &flogi->fl_wwnn);
|
|
|
|
sp = &flogi->fl_csp;
|
|
|
|
sp->sp_hi_ver = 0x20;
|
|
|
|
sp->sp_lo_ver = 0x20;
|
|
|
|
sp->sp_bb_cred = htons(10); /* this gets set by gateway */
|
|
|
|
sp->sp_bb_data = htons((u16) lport->mfs);
|
|
|
|
cp = &flogi->fl_cssp[3 - 1]; /* class 3 parameters */
|
|
|
|
cp->cp_class = htons(FC_CPC_VALID | FC_CPC_SEQ);
|
2009-11-04 03:46:24 +08:00
|
|
|
if (lport->does_npiv)
|
|
|
|
sp->sp_features = htons(FC_SP_FT_NPIV);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* fc_fdisc_fill - Fill in a fdisc request frame.
|
|
|
|
*/
|
|
|
|
static inline void fc_fdisc_fill(struct fc_lport *lport, struct fc_frame *fp)
|
|
|
|
{
|
|
|
|
struct fc_els_csp *sp;
|
|
|
|
struct fc_els_cssp *cp;
|
|
|
|
struct fc_els_flogi *fdisc;
|
|
|
|
|
|
|
|
fdisc = fc_frame_payload_get(fp, sizeof(*fdisc));
|
|
|
|
memset(fdisc, 0, sizeof(*fdisc));
|
|
|
|
fdisc->fl_cmd = (u8) ELS_FDISC;
|
|
|
|
put_unaligned_be64(lport->wwpn, &fdisc->fl_wwpn);
|
|
|
|
put_unaligned_be64(lport->wwnn, &fdisc->fl_wwnn);
|
|
|
|
sp = &fdisc->fl_csp;
|
|
|
|
sp->sp_hi_ver = 0x20;
|
|
|
|
sp->sp_lo_ver = 0x20;
|
|
|
|
sp->sp_bb_cred = htons(10); /* this gets set by gateway */
|
|
|
|
sp->sp_bb_data = htons((u16) lport->mfs);
|
|
|
|
cp = &fdisc->fl_cssp[3 - 1]; /* class 3 parameters */
|
|
|
|
cp->cp_class = htons(FC_CPC_VALID | FC_CPC_SEQ);
|
2008-12-10 07:10:17 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* fc_logo_fill - Fill in a logo request frame.
|
|
|
|
*/
|
|
|
|
static inline void fc_logo_fill(struct fc_lport *lport, struct fc_frame *fp)
|
|
|
|
{
|
|
|
|
struct fc_els_logo *logo;
|
|
|
|
|
|
|
|
logo = fc_frame_payload_get(fp, sizeof(*logo));
|
|
|
|
memset(logo, 0, sizeof(*logo));
|
|
|
|
logo->fl_cmd = ELS_LOGO;
|
2010-05-08 06:18:41 +08:00
|
|
|
hton24(logo->fl_n_port_id, lport->port_id);
|
2008-12-10 07:10:17 +08:00
|
|
|
logo->fl_n_port_wwn = htonll(lport->wwpn);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* fc_rtv_fill - Fill in RTV (read timeout value) request frame.
|
|
|
|
*/
|
|
|
|
static inline void fc_rtv_fill(struct fc_lport *lport, struct fc_frame *fp)
|
|
|
|
{
|
|
|
|
struct fc_els_rtv *rtv;
|
|
|
|
|
|
|
|
rtv = fc_frame_payload_get(fp, sizeof(*rtv));
|
|
|
|
memset(rtv, 0, sizeof(*rtv));
|
|
|
|
rtv->rtv_cmd = ELS_RTV;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* fc_rec_fill - Fill in rec request frame
|
|
|
|
*/
|
|
|
|
static inline void fc_rec_fill(struct fc_lport *lport, struct fc_frame *fp)
|
|
|
|
{
|
|
|
|
struct fc_els_rec *rec;
|
|
|
|
struct fc_exch *ep = fc_seq_exch(fr_seq(fp));
|
|
|
|
|
|
|
|
rec = fc_frame_payload_get(fp, sizeof(*rec));
|
|
|
|
memset(rec, 0, sizeof(*rec));
|
|
|
|
rec->rec_cmd = ELS_REC;
|
2010-05-08 06:18:41 +08:00
|
|
|
hton24(rec->rec_s_id, lport->port_id);
|
2008-12-10 07:10:17 +08:00
|
|
|
rec->rec_ox_id = htons(ep->oxid);
|
|
|
|
rec->rec_rx_id = htons(ep->rxid);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* fc_prli_fill - Fill in prli request frame
|
|
|
|
*/
|
|
|
|
static inline void fc_prli_fill(struct fc_lport *lport, struct fc_frame *fp)
|
|
|
|
{
|
|
|
|
struct {
|
|
|
|
struct fc_els_prli prli;
|
|
|
|
struct fc_els_spp spp;
|
|
|
|
} *pp;
|
|
|
|
|
|
|
|
pp = fc_frame_payload_get(fp, sizeof(*pp));
|
|
|
|
memset(pp, 0, sizeof(*pp));
|
|
|
|
pp->prli.prli_cmd = ELS_PRLI;
|
|
|
|
pp->prli.prli_spp_len = sizeof(struct fc_els_spp);
|
|
|
|
pp->prli.prli_len = htons(sizeof(*pp));
|
|
|
|
pp->spp.spp_type = FC_TYPE_FCP;
|
|
|
|
pp->spp.spp_flags = FC_SPP_EST_IMG_PAIR;
|
|
|
|
pp->spp.spp_params = htonl(lport->service_params);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* fc_scr_fill - Fill in a scr request frame.
|
|
|
|
*/
|
|
|
|
static inline void fc_scr_fill(struct fc_lport *lport, struct fc_frame *fp)
|
|
|
|
{
|
|
|
|
struct fc_els_scr *scr;
|
|
|
|
|
|
|
|
scr = fc_frame_payload_get(fp, sizeof(*scr));
|
|
|
|
memset(scr, 0, sizeof(*scr));
|
|
|
|
scr->scr_cmd = ELS_SCR;
|
|
|
|
scr->scr_reg_func = ELS_SCRF_FULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* fc_els_fill - Fill in an ELS request frame
|
|
|
|
*/
|
2009-08-26 05:00:50 +08:00
|
|
|
static inline int fc_els_fill(struct fc_lport *lport,
|
2009-08-26 05:00:55 +08:00
|
|
|
u32 did,
|
2008-12-10 07:10:17 +08:00
|
|
|
struct fc_frame *fp, unsigned int op,
|
2009-08-26 05:00:55 +08:00
|
|
|
enum fc_rctl *r_ctl, enum fc_fh_type *fh_type)
|
2008-12-10 07:10:17 +08:00
|
|
|
{
|
|
|
|
switch (op) {
|
2009-08-26 05:03:47 +08:00
|
|
|
case ELS_ADISC:
|
|
|
|
fc_adisc_fill(lport, fp);
|
|
|
|
break;
|
|
|
|
|
2008-12-10 07:10:17 +08:00
|
|
|
case ELS_PLOGI:
|
|
|
|
fc_plogi_fill(lport, fp, ELS_PLOGI);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ELS_FLOGI:
|
|
|
|
fc_flogi_fill(lport, fp);
|
|
|
|
break;
|
|
|
|
|
2009-11-04 03:46:24 +08:00
|
|
|
case ELS_FDISC:
|
|
|
|
fc_fdisc_fill(lport, fp);
|
|
|
|
break;
|
|
|
|
|
2008-12-10 07:10:17 +08:00
|
|
|
case ELS_LOGO:
|
|
|
|
fc_logo_fill(lport, fp);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ELS_RTV:
|
|
|
|
fc_rtv_fill(lport, fp);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ELS_REC:
|
|
|
|
fc_rec_fill(lport, fp);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ELS_PRLI:
|
|
|
|
fc_prli_fill(lport, fp);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ELS_SCR:
|
|
|
|
fc_scr_fill(lport, fp);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
*r_ctl = FC_RCTL_ELS_REQ;
|
|
|
|
*fh_type = FC_TYPE_ELS;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif /* _FC_ENCODE_H_ */
|