SCSI FC Tansport

Date: 11/18/2008

Kernel Revisions for features:

rports : <<TBS>>vports : 2.6.22bsg support : 2.6.30 (?TBD?)

Introduction

This file documents the features and components of the SCSI FC Transport.It also provides documents the API between the transport and FC LLDDs.

The FC transport can be found at:

drivers/scsi/scsi_transport_fc.cinclude/scsi/scsi_transport_fc.hinclude/scsi/scsi_netlink_fc.hinclude/scsi/scsi_bsg_fc.h

This file is found at Documentation/scsi/scsi_fc_transport.rst

FC Remote Ports (rports)

<< To Be Supplied >>

FC Virtual Ports (vports)

Overview

New FC standards have defined mechanisms which allows for a single physicalport to appear on as multiple communication ports. Using the N_Port IdVirtualization (NPIV) mechanism, a point-to-point connection to a Fabriccan be assigned more than 1 N_Port_ID. Each N_Port_ID appears as aseparate port to other endpoints on the fabric, even though it shares onephysical link to the switch for communication. Each N_Port_ID can have aunique view of the fabric based on fabric zoning and array lun-masking(just like a normal non-NPIV adapter). Using the Virtual Fabric (VF)mechanism, adding a fabric header to each frame allows the port tointeract with the Fabric Port to join multiple fabrics. The port willobtain an N_Port_ID on each fabric it joins. Each fabric will have itsown unique view of endpoints and configuration parameters. NPIV may beused together with VF so that the port can obtain multiple N_Port_IDson each virtual fabric.

The FC transport is now recognizing a new object - a vport. A vport isan entity that has a world-wide unique World Wide Port Name (wwpn) andWorld Wide Node Name (wwnn). The transport also allows for the FC4’s tobe specified for the vport, with FCP_Initiator being the primary roleexpected. Once instantiated by one of the above methods, it will have adistinct N_Port_ID and view of fabric endpoints and storage entities.The fc_host associated with the physical adapter will export the abilityto create vports. The transport will create the vport object within theLinux device tree, and instruct the fc_host’s driver to instantiate thevirtual port. Typically, the driver will create a new scsi_host instanceon the vport, resulting in a unique <H,C,T,L> namespace for the vport.Thus, whether a FC port is based on a physical port or on a virtual port,each will appear as a unique scsi_host with its own target and lun space.

Note

At this time, the transport is written to create only NPIV-basedvports. However, consideration was given to VF-based vports and itshould be a minor change to add support if needed. The remainingdiscussion will concentrate on NPIV.

Note

World Wide Name assignment (and uniqueness guarantees) are leftup to an administrative entity controlling the vport. For example,if vports are to be associated with virtual machines, a XEN mgmtutility would be responsible for creating wwpn/wwnn’s for the vport,using its own naming authority and OUI. (Note: it already does thisfor virtual MAC addresses).

Device Trees and Vport Objects:

Today, the device tree typically contains the scsi_host object,with rports and scsi target objects underneath it. Currently the FCtransport creates the vport object and places it under the scsi_hostobject corresponding to the physical adapter. The LLDD will allocatea new scsi_host for the vport and link its object under the vport.The remainder of the tree under the vports scsi_host is the sameas the non-NPIV case. The transport is written currently to easilyallow the parent of the vport to be something other than the scsi_host.This could be used in the future to link the object onto a vm-specificdevice tree. If the vport’s parent is not the physical port’s scsi_host,a symbolic link to the vport object will be placed in the physicalport’s scsi_host.

Here’s what to expect in the device tree :

The typical Physical Port’s Scsi_Host:

/sys/devices/.../host17/

and it has the typical descendant tree:

/sys/devices/.../host17/rport-17:0-0/target17:0:0/17:0:0:0:

and then the vport is created on the Physical Port:

/sys/devices/.../host17/vport-17:0-0

and the vport’s Scsi_Host is then created:

/sys/devices/.../host17/vport-17:0-0/host18

and then the rest of the tree progresses, such as:

/sys/devices/.../host17/vport-17:0-0/host18/rport-18:0-0/target18:0:0/18:0:0:0:

Here’s what to expect in the sysfs tree:

scsi_hosts:  /sys/class/scsi_host/host17                physical port's scsi_host  /sys/class/scsi_host/host18                vport's scsi_hostfc_hosts:  /sys/class/fc_host/host17                  physical port's fc_host  /sys/class/fc_host/host18                  vport's fc_hostfc_vports:  /sys/class/fc_vports/vport-17:0-0          the vport's fc_vportfc_rports:  /sys/class/fc_remote_ports/rport-17:0-0    rport on the physical port  /sys/class/fc_remote_ports/rport-18:0-0    rport on the vport

Vport Attributes

The new fc_vport class object has the following attributes

node_name: Read_Only
The WWNN of the vport
port_name: Read_Only
The WWPN of the vport
roles: Read_Only
Indicates the FC4 roles enabled on the vport.
symbolic_name: Read_Write
A string, appended to the driver’s symbolic port name string, whichis registered with the switch to identify the vport. For example,a hypervisor could set this string to “Xen Domain 2 VM 5 Vport 2”,and this set of identifiers can be seen on switch management screensto identify the port.
vport_delete: Write_Only
When written with a “1”, will tear down the vport.
vport_disable: Write_Only
When written with a “1”, will transition the vport to a disabled.state. The vport will still be instantiated with the Linux kernel,but it will not be active on the FC link.When written with a “0”, will enable the vport.
vport_last_state: Read_Only
Indicates the previous state of the vport. See the section below on“Vport States”.
vport_state: Read_Only
Indicates the state of the vport. See the section below on“Vport States”.
vport_type: Read_Only
Reflects the FC mechanism used to create the virtual port.Only NPIV is supported currently.

For the fc_host class object, the following attributes are added for vports:

max_npiv_vports: Read_Only
Indicates the maximum number of NPIV-based vports that thedriver/adapter can support on the fc_host.
npiv_vports_inuse: Read_Only
Indicates how many NPIV-based vports have been instantiated on thefc_host.
vport_create: Write_Only
A “simple” create interface to instantiate a vport on an fc_host.A “<WWPN>:<WWNN>” string is written to the attribute. The transportthen instantiates the vport object and calls the LLDD to create thevport with the role of FCP_Initiator. Each WWN is specified as 16hex characters and maynot contain any prefixes (e.g. 0x, x, etc).
vport_delete: Write_Only
A “simple” delete interface to teardown a vport. A “<WWPN>:<WWNN>”string is written to the attribute. The transport will locate thevport on the fc_host with the same WWNs and tear it down. Each WWNis specified as 16 hex characters and maynot contain any prefixes(e.g. 0x, x, etc).

Vport States

Vport instantiation consists of two parts:

  • Creation with the kernel and LLDD. This means all transport anddriver data structures are built up, and device objects created.This is equivalent to a driver “attach” on an adapter, which isindependent of the adapter’s link state.
  • Instantiation of the vport on the FC link via ELS traffic, etc.This is equivalent to a “link up” and successful link initialization.

Further information can be found in the interfaces section below forVport Creation.

Once a vport has been instantiated with the kernel/LLDD, a vport statecan be reported via the sysfs attribute. The following states exist:

FC_VPORT_UNKNOWN - Unknown
An temporary state, typically set only while the vport is beinginstantiated with the kernel and LLDD.
FC_VPORT_ACTIVE - Active
The vport has been successfully been created on the FC link.It is fully functional.
FC_VPORT_DISABLED - Disabled
The vport instantiated, but “disabled”. The vport is not instantiatedon the FC link. This is equivalent to a physical port with thelink “down”.
FC_VPORT_LINKDOWN - Linkdown
The vport is not operational as the physical link is not operational.
FC_VPORT_INITIALIZING - Initializing
The vport is in the process of instantiating on the FC link.The LLDD will set this state just prior to starting the ELS trafficto create the vport. This state will persist until the vport issuccessfully created (state becomes FC_VPORT_ACTIVE) or it fails(state is one of the values below). As this state is transitory,it will not be preserved in the “vport_last_state”.
FC_VPORT_NO_FABRIC_SUPP - No Fabric Support

The vport is not operational. One of the following conditions wereencountered:

  • The FC topology is not Point-to-Point
  • The FC port is not connected to an F_Port
  • The F_Port has indicated that NPIV is not supported.
FC_VPORT_NO_FABRIC_RSCS - No Fabric Resources
The vport is not operational. The Fabric failed FDISC with a statusindicating that it does not have sufficient resources to completethe operation.
FC_VPORT_FABRIC_LOGOUT - Fabric Logout
The vport is not operational. The Fabric has LOGO’d the N_Port_IDassociated with the vport.
FC_VPORT_FABRIC_REJ_WWN - Fabric Rejected WWN
The vport is not operational. The Fabric failed FDISC with a statusindicating that the WWN’s are not valid.
FC_VPORT_FAILED - VPort Failed
The vport is not operational. This is a catchall for all othererror conditions.

The following state table indicates the different state transitions:

StateEventNew State
n/aInitializationUnknown
Unknown:Link DownLinkdown
Link Up & LoopNo Fabric Support
Link Up & no FabricNo Fabric Support
Link Up & FLOGI responseindicates no NPIV supportNo Fabric Support
Link Up & FDISC being sentInitializing
Disable requestDisable
Linkdown:Link UpUnknown
Initializing:FDISC ACCActive
FDISC LS_RJT w/ no resourcesNo Fabric Resources
FDISC LS_RJT w/ invalidpname or invalid nport_idFabric Rejected WWN
FDISC LS_RJT failed forother reasonsVport Failed
Link DownLinkdown
Disable requestDisable
Disable:Enable requestUnknown
Active:LOGO received from fabricFabric Logout
Link DownLinkdown
Disable requestDisable
Fabric Logout:Link still upUnknown

The following 4 error states all have the same transitions:

No Fabric Support:No Fabric Resources:Fabric Rejected WWN:Vport Failed:                    Disable request                 Disable                    Link goes down                  Linkdown

Transport <-> LLDD Interfaces

Vport support by LLDD:

The LLDD indicates support for vports by supplying a vport_create()function in the transport template. The presence of this function willcause the creation of the new attributes on the fc_host. As part ofthe physical port completing its initialization relative to thetransport, it should set the max_npiv_vports attribute to indicate themaximum number of vports the driver and/or adapter supports.

Vport Creation:

The LLDD vport_create() syntax is:

int vport_create(struct fc_vport *vport, bool disable)

where:

vportIs the newly allocated vport object
disableIf “true”, the vport is to be created in a disabled stated.If “false”, the vport is to be enabled upon creation.

When a request is made to create a new vport (via sgio/netlink, or thevport_create fc_host attribute), the transport will validate that the LLDDcan support another vport (e.g. max_npiv_vports > npiv_vports_inuse).If not, the create request will be failed. If space remains, the transportwill increment the vport count, create the vport object, and then call theLLDD’s vport_create() function with the newly allocated vport object.

As mentioned above, vport creation is divided into two parts:

  • Creation with the kernel and LLDD. This means all transport anddriver data structures are built up, and device objects created.This is equivalent to a driver “attach” on an adapter, which isindependent of the adapter’s link state.
  • Instantiation of the vport on the FC link via ELS traffic, etc.This is equivalent to a “link up” and successful link initialization.

The LLDD’s vport_create() function will not synchronously wait for bothparts to be fully completed before returning. It must validate that theinfrastructure exists to support NPIV, and complete the first part ofvport creation (data structure build up) before returning. We do nothinge vport_create() on the link-side operation mainly because:

  • The link may be down. It is not a failure if it is. It simplymeans the vport is in an inoperable state until the link comes up.This is consistent with the link bouncing post vport creation.
  • The vport may be created in a disabled state.
  • This is consistent with a model where: the vport equates to aFC adapter. The vport_create is synonymous with driver attachmentto the adapter, which is independent of link state.

Note

special error codes have been defined to delineate infrastructurefailure cases for quicker resolution.

The expected behavior for the LLDD’s vport_create() function is:

  • Validate Infrastructure:

    • If the driver or adapter cannot support another vport, whether
      due to improper firmware, (a lie about) max_npiv, or a lack ofsome other resource - return VPCERR_UNSUPPORTED.
    • If the driver validates the WWN’s against those already active on
      the adapter and detects an overlap - return VPCERR_BAD_WWN.
    • If the driver detects the topology is loop, non-fabric, or the
      FLOGI did not support NPIV - return VPCERR_NO_FABRIC_SUPP.
  • Allocate data structures. If errors are encountered, such as out

    of memory conditions, return the respective negative Exxx error code.

  • If the role is FCP Initiator, the LLDD is to :

    • Callscsi_host_alloc() to allocate a scsi_host for the vport.
    • Call scsi_add_host(new_shost, &vport->dev) to start the scsi_hostand bind it as a child of the vport device.
    • Initializes the fc_host attribute values.
  • Kick of further vport state transitions based on the disable flag and

    link state - and return success (zero).

LLDD Implementers Notes:

  • It is suggested that there be a different fc_function_templates forthe physical port and the virtual port. The physical port’s templatewould have the vport_create, vport_delete, and vport_disable functions,while the vports would not.
  • It is suggested that there be different scsi_host_templatesfor the physical port and virtual port. Likely, there are driverattributes, embedded into the scsi_host_template, that are applicablefor the physical port only (link speed, topology setting, etc). Thisensures that the attributes are applicable to the respective scsi_host.

Vport Disable/Enable:

The LLDD vport_disable() syntax is:

int vport_disable(struct fc_vport *vport, bool disable)

where:

vportIs vport to be enabled or disabled
disableIf “true”, the vport is to be disabled.If “false”, the vport is to be enabled.

When a request is made to change the disabled state on a vport, thetransport will validate the request against the existing vport state.If the request is to disable and the vport is already disabled, therequest will fail. Similarly, if the request is to enable, and thevport is not in a disabled state, the request will fail. If the requestis valid for the vport state, the transport will call the LLDD tochange the vport’s state.

Within the LLDD, if a vport is disabled, it remains instantiated withthe kernel and LLDD, but it is not active or visible on the FC link inany way. (see Vport Creation and the 2 part instantiation discussion).The vport will remain in this state until it is deleted or re-enabled.When enabling a vport, the LLDD reinstantiates the vport on the FClink - essentially restarting the LLDD statemachine (see Vport Statesabove).

Vport Deletion:

The LLDD vport_delete() syntax is:

int vport_delete(struct fc_vport *vport)

where:

vport: Is vport to delete

When a request is made to delete a vport (via sgio/netlink, or via thefc_host or fc_vport vport_delete attributes), the transport will callthe LLDD to terminate the vport on the FC link, and teardown all otherdatastructures and references. If the LLDD completes successfully,the transport will teardown the vport objects and complete the vportremoval. If the LLDD delete request fails, the vport object will remain,but will be in an indeterminate state.

Within the LLDD, the normal code paths for a scsi_host teardown shouldbe followed. E.g. If the vport has a FCP Initiator role, the LLDDwill callfc_remove_host() for the vports scsi_host, followed byscsi_remove_host() andscsi_host_put() for the vports scsi_host.

Other:
fc_host port_type attribute:
There is a new fc_host port_type value - FC_PORTTYPE_NPIV. This valuemust be set on all vport-based fc_hosts. Normally, on a physical port,the port_type attribute would be set to NPORT, NLPORT, etc based on thetopology type and existence of the fabric. As this is not applicable toa vport, it makes more sense to report the FC mechanism used to createthe vport.
Driver unload:
FC drivers are required to callfc_remove_host() prior to callingscsi_remove_host(). This allows the fc_host to tear down all remoteports prior the scsi_host being torn down. Thefc_remove_host() callwas updated to remove all vports for the fc_host as well.

Transport supplied functions

The following functions are supplied by the FC-transport for use by LLDs.

fc_vport_createcreate a vport
fc_vport_terminatedetach and remove a vport

Details:

/*** fc_vport_create - Admin App or LLDD requests creation of a vport* @shost:     scsi host the virtual port is connected to.* @ids:       The world wide names, FC4 port roles, etc for*              the virtual port.** Notes:*     This routine assumes no locks are held on entry.*/struct fc_vport *fc_vport_create(struct Scsi_Host *shost, struct fc_vport_identifiers *ids)/*** fc_vport_terminate - Admin App or LLDD requests termination of a vport* @vport:      fc_vport to be terminated** Calls the LLDD vport_delete() function, then deallocates and removes* the vport from the shost and object tree.** Notes:*      This routine assumes no locks are held on entry.*/intfc_vport_terminate(struct fc_vport *vport)

FC BSG support (CT & ELS passthru, and more)

<< To Be Supplied >>

Credits

The following people have contributed to this document:

James Smartjames.smart@emulex.com