<?xml version="1.0" encoding="us-ascii"?>
<!DOCTYPE rfc SYSTEM "rfc2629.dtd"[


<!ENTITY RFC2119 SYSTEM "http://xml.resource.org/public/rfc/bibxml/reference.RFC.2119.xml">
<!ENTITY RFC2629 SYSTEM "http://xml.resource.org/public/rfc/bibxml/reference.RFC.2629.xml">
<!ENTITY RFC3552 SYSTEM "http://xml.resource.org/public/rfc/bibxml/reference.RFC.3552.xml">
<!ENTITY I-D.narten-iana-considerations-rfc2434bis SYSTEM "http://xml.resource.org/public/rfc/bibxml3/reference.I-D.narten-iana-considerations-rfc2434bis.xml">
]>
<?xml-stylesheet type='text/xsl' href='rfc2629.xslt' ?>
<?rfc strict="yes" ?>
<?rfc toc="yes"?>
<?rfc tocdepth="4"?>
<?rfc symrefs="yes"?>
<?rfc sortrefs="yes" ?>
<?rfc compact="yes" ?>
<?rfc subcompact="no" ?>
<rfc category="std" docName="draft-ietf-ftpext2-hosts-05" ipr="trust200902" obsoletes="" updates="959" submissionType="IETF" xml:lang="en">
  <front>
    <title abbrev="FTP HOST Command for Virtual Hosts">File Transfer Protocol HOST Command for Virtual Hosts</title>
    <author fullname="Paul Hethmon" initials="P." surname="Hethmon">
      <organization>Hethmon Brothers</organization>
      <address>
        <postal>
          <street>2305 Chukar Road</street>
          <city>Knoxville</city>
          <region>TN</region>
          <code>37923</code>
          <country>USA</country>
        </postal>
        <email>phethmon@hethmon.com</email>
      </address>
    </author>
    <author fullname="Robert McMurray" initials="R." surname="McMurray">
      <organization>Microsoft Corporation</organization>
      <address>
        <postal>
          <street>One Microsoft Way</street>
          <city>Redmond</city>
          <region>WA</region>
          <code>98052</code>
          <country>USA</country>
        </postal>
        <email>robmcm@microsoft.com</email>
      </address>
    </author>
    <date month="December" year="2011" />
    <workgroup>FTPEXT2 Working Group</workgroup>
    <keyword>FTP</keyword>
    <keyword>HOST</keyword>
    <abstract>
      <t>The File Transfer Protocol, as defined in RFC 959 [RFC0959], does not provide a way for FTP clients and servers to differentiate between multiple DNS names that are registered for a single IP address.  This document defines a new FTP command that provides a mechanism for FTP clients and servers to identify individual virtual hosts on an FTP server.</t>
    </abstract>
  </front>
  <middle>
    <section title="Introduction" toc="default">
      <t>It is common on the Internet for many DNS names to resolve to a single IP address.  This practice has introduced the concept of a "virtual host", where a host appears to exist as an independent entity, but in reality shares its physical resources with one or more similar hosts.</t>
      <t>Such an arrangement presents some problems for FTP servers, as an FTP server distinguishes incoming FTP connections by their IP addresses, not their DNS names, because hosts are uniquely identified by their address rather than name.  That is, all DNS names that share an IP address are handled by the same FTP server and share the same Network Virtual File System (NVFS).</t>
      <t>This means that different virtual hosts cannot offer different virtual file systems to clients, nor can they offer different authentication systems.  Any scheme to overcome this issue needs to indicate not only the destination IP address, but also the virtual host name that is associated with the desired virtual FTP server.  Typical user-FTP processes currently use hostnames to perform hostname to IP address resolution and then ignore hostnames for the rest of the FTP session, therefore any mechanism to overcome this issue would require modifications to the user-PI and server-PI.</t>
      <t>It should be noted that this same problem existed for HTTP/1.0 as defined in <xref target="RFC1945" pageno="false" format="default"></xref>, and was resolved in HTTP/1.1 as defined in <xref target="RFC2616" pageno="false" format="default"></xref> through the addition of the Host request header.  The goal of this document is to bring a similar level of feature parity to FTP by introducing a new HOST command that allows user-FTP processes to specify which virtual host to connect to for a server-FTP process that is handling requests for multiple virtual hosts on a single IP address.</t>
    </section>
    <section title="Document Conventions" toc="default">
      <t>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED",  "MAY", and "OPTIONAL" in this document are to be interpreted as described in <xref target="RFC2119" pageno="false" format="default"></xref>.</t>
      <t>In examples, "C&gt;" and "S&gt;" indicate lines sent by the client and server, respectively.</t>
      <t>This document also uses notation defined in <xref target="RFC0959" pageno="false" format="default"></xref> and <xref target="RFC1123" pageno="false" format="default"></xref>.  In particular, the terms "reply", "user", "NVFS", "NVT", "file", "pathname", "FTP commands", "DTP", "user-FTP process", "user-PI", "user-DTP", "server-FTP process", "server-PI", "server-DTP", "mode", "type", "control connection", "data connection", and "ASCII", are all used here as defined there.</t>
      <t>Syntax required is defined using the Augmented BNF defined in <xref target="RFC5234" pageno="false" format="default"></xref>.  Some general ABNF definitions are required throughout the document; those will be defined later in this section.  At first reading, it may be wise to simply recall that these definitions exist here, and skip to the next section.</t>
      <section title="Basic Tokens" toc="default">
        <t>This document imports the core definitions given in Appendix B of <xref target="RFC5234" pageno="false" format="default" />.  There definitions will be found for basic ABNF elements like ALPHA, DIGIT, SP, etc.  To that, the following term is added for use in this document.</t>
        <t>
          <figure title="" suppress-title="false" align="left" alt="" width="" height="">
            <artwork type="ABNF" xml:space="preserve" name="" align="left" alt="" width="" height=""><![CDATA[     TCHAR = VCHAR / SP / HTAB    ; visible plus white space]]></artwork>
          </figure>
        </t>
        <t>The VCHAR (from <xref target="RFC5234" pageno="false" format="default" />) and TCHAR rules give basic character types from varying sub-sets of the ASCII character set for use in various commands and responses.</t>
        <t>Note that in ABNF, string literals are case insensitive.  That convention is preserved in this document, and implies that FTP commands and parameters that are added by this specification have values that can be represented in any case.  That is, "HOST" is the same as "host", "Host", "HoSt", etc., and "ftp.example.com" is the same as "Ftp.Example.Com", "fTp.eXample.cOm", etc.</t>
      </section>
      <section title="Server Replies" toc="default">
        <t>Section 4.2 of <xref target="RFC0959" pageno="false" format="default" /> defines the format and meaning of replies by the server-PI to FTP commands from the user-PI.  Those reply conventions are used here without change.</t>
        <t>
          <figure title="" suppress-title="false" align="left" alt="" width="" height="">
            <artwork type="ABNF" xml:space="preserve" name="" align="left" alt="" width="" height=""><![CDATA[     error-response = error-code SP *TCHAR CRLF
     error-code     = ("4" / "5") 2DIGIT]]></artwork>
          </figure>
        </t>
        <t>Implementers should note that the ABNF syntax (which was not used in <xref target="RFC0959" pageno="false" format="default" />) used in this document, and other FTP related documents, sometimes shows replies using the one line format.  Unless otherwise explicitly stated, that is not intended to imply that multi-line responses are not permitted.  Implementers should assume that, unless stated to the contrary, any reply to any FTP command (including QUIT) can be of the multi-line format described in <xref target="RFC0959" pageno="false" format="default" />.</t>
        <t>Throughout this document, replies will be identified by the three digit code that is their first element.  Thus the term "500 reply" means a reply from the server-PI using the three digit code "500".</t>
      </section>
    </section>
    <section title="The HOST command" toc="default">
      <t>A new command "HOST" is added to the FTP command set to allow the server-FTP process to determine to which of possibly many virtual hosts the client wishes to connect.  This command MUST be issued before the user is authenticated, allowing the authentication scheme, and set of legal users, to be dependent upon the virtual host chosen.</t>
      <t>Server-FTP processes that conform to this specification MUST treat a situation where the HOST command is issued more than once before the user has been authenticated as though a previous HOST command was not sent, and return the appropriate reply for the new HOST command. Server-FTP processes MUST treat a situation where the HOST command is issued after the user has been authenticated as an erroneous sequence of commands and return a 503 reply.</t>
      <t>Servers should note that the response to the HOST command is a sensible time to send their "welcome" message.  This allows the message to be personalized for any virtual hosts that are supported, and also allows the client to determine the supported languages, or representations, for the message, and other messages, via the FEAT response, and select an appropriate one via the LANG command.  See <xref target="RFC2640" pageno="false" format="default"></xref> for more information.</t>
      <section title="Syntax of the HOST command" toc="default">
        <t>The HOST command is defined as follows.</t>
        <t>
          <figure title="" suppress-title="false" align="left" alt="" width="" height="">
            <artwork type="ABNF" xml:space="preserve" name="" align="left" alt="" width="" height=""><![CDATA[  host-command  = "HOST" SP hostname CRLF
  hostname      = domain / IP-literal

  domain        = sub-domain *("." sub-domain)
  sub-domain    = let-dig [ldh-str]
  let-dig       = ALPHA / DIGIT
  ldh-str       = *( ALPHA / DIGIT / "-" ) let-dig

  IP-literal    = ( "[" IPv6address "]" ) / IPv4address

  IPv6address   =                              6( h16 ":" ) ls32
                  /                       "::" 5( h16 ":" ) ls32
                  / [               h16 ] "::" 4( h16 ":" ) ls32
                  / [ *1( h16 ":" ) h16 ] "::" 3( h16 ":" ) ls32
                  / [ *2( h16 ":" ) h16 ] "::" 2( h16 ":" ) ls32
                  / [ *3( h16 ":" ) h16 ] "::"    h16 ":"   ls32
                  / [ *4( h16 ":" ) h16 ] "::"              ls32
                  / [ *5( h16 ":" ) h16 ] "::"              h16
                  / [ *6( h16 ":" ) h16 ] "::"

  ls32          = ( h16 ":" h16 ) / IPv4address
                  ; least-significant 32 bits of address

  h16           = 1*4HEXDIG
                  ; 16 bits of address represented in hexadecimal

  IPv4address   = dec-octet "." dec-octet "." dec-octet "." dec-octet

  dec-octet     = DIGIT                 ; 0-9
                  / %x31-39 DIGIT       ; 10-99
                  / "1" 2DIGIT          ; 100-199
                  / "2" %x30-34 DIGIT   ; 200-249
                  / "25" %x30-35        ; 250-255

  host-response = host-ok / error-response
  host-ok       = "220" [ SP *TCHAR ] CRLF]]></artwork>
          </figure>
        </t>
        <t>As with all FTP commands, the "HOST" command word is case independent, and MAY be specified in any character case desired.</t>
        <t>The "hostname" (given as a parameter) specifies the virtual host to which access is desired.  This SHOULD be the same host name that was used to obtain the IP address to which the FTP control connection was made, after any client conversions have been completed that convert an abbreviated or local alias to a complete (fully qualified) domain name, but before resolving a DNS alias (owner of a CNAME resource record) to its canonical name.</t>
        <t>Internationalization of domain names is only supported through the use of Punycode as described in <xref target="RFC3492" pageno="false" format="default" />.</t>
        <t>If the user was given an IPv4 or IPv6 literal address, and consequently was not required to derive the literal address from a hostname, the client MAY send the HOST command with the IPv4 or IPv6 literal address as specified to it.  While it may seem counter-intuitive to specify a literal address by using the HOST command after the client has already connected to the server using a literal address, this should be expected behavior because a user-FTP process should not be required to differentiate between a fully qualified domain name and an IPv4 or IPv6 network literal address.  That being said, if the IPv4 or IPv6 literal address specified by the client does not match the literal address for the server, the server MUST respond with a 504 reply to indicate that the IPv4 or IPv6 literal address is not valid.</t>
        <t>When the hostname parameter contains a literal address, square brackets are expected to disambiguate IPv6 address syntax from port numbers syntax.  Therefore, if the literal address is an IPv6 address, the IPv6 address is required to be enclosed in square brackets (after eliminating any syntax that might also - but is not required to - be enclosed in brackets, and from which the server deduced that a literal address had been specified.) For example, the following examples MAY be sent if the client had been instructed to respectively connect to "192.0.2.1", "FE80::c000:0201", or "192.0.2.1" and IPv6 syntax is preferred:</t>
        <t>
          <figure title="" suppress-title="false" align="left" alt="" width="" height="">
            <artwork xml:space="preserve" name="" type="" align="left" alt="" width="" height=""><![CDATA[     HOST 192.0.2.1
     HOST [FE80::c000:0201]
     HOST [::192.0.2.1]]]></artwork>
          </figure>
        </t>
        <t>The client MUST NOT send the port number as part of the HOST command, even when the client has been instructed to connect to a non-standard port.  The reason for this requirement is that the user-PI will have established a connection to the server-PI before the HOST command is sent, therefore specifying a different port with the HOST command has no meaning.  For example, the server-PI MUST respond with a 501 reply if the client sends a HOST command with syntax like either of the following examples:</t>
        <t>
          <figure title="" suppress-title="false" align="left" alt="" width="" height="">
            <artwork xml:space="preserve" name="" type="" align="left" alt="" width="" height=""><![CDATA[     HOST 192.0.2.1:2112
     HOST [FE80::c000:0201]:2112]]></artwork>
          </figure>
        </t>
        <t>The hostname parameter is otherwise to be treated as a fully qualified domain name or relative name as those terms are defined in section 3.1 of <xref target="RFC1034" pageno="false" format="default" />.  This implies that the name is to be treated as a case-independent string, meaning that uppercase ASCII characters are to be treated as equivalent to their corresponding lowercase ASCII characters, but otherwise preserved as given.  It also implies some limits on the length of the parameter and of the components that create its internal structure.  Those limits are not altered in any way here.</t>
        <t>Neither <xref target="RFC1034" pageno="false" format="default" /> nor <xref target="RFC1035" pageno="false" format="default" /> impose any other restrictions upon what kinds of names can be stored in the DNS.  This specification, however, only allows the use of names that can be inferred from the ABNF grammar given for the "hostname".</t>
      </section>
      <section title="HOST command semantics" toc="default">
        <t>Upon receiving the HOST command, before authenticating the user-PI, a server-FTP process SHOULD validate that the hostname given represents a valid virtual host for that server, and, if it is valid, establish the appropriate environment for that virtual host.  The resultant actions needed to create that environment are not specified here, and may range from doing nothing at all, to performing a simple change of working directory, changing authentication schemes and/or username and password lists, or making much more elaborate state changes - such as creating isolated environments for each FTP session.</t>
        <t>The "220" reply code for the HOST command is the same as the code that is used in the initial "welcome" message that is sent after the connection is established.</t>
        <t>If the hostname specified would normally be acceptable, but for any reason is temporarily unavailable, the server-FTP process SHOULD reply to the HOST command with a 421 reply and close the connection.  In this particular situation, the server-FTP process MAY choose to keep the connection open in order to allow the user-PI an opportunity to choose another virtual host with a subsequent HOST command.</t>
        <t>If the hostname specified is unknown at the server, or if the server is otherwise unwilling to treat the particular connection as a connection to the hostname specified, the server SHOULD respond with a 504 reply.</t>
        <section title="REIN command semantics" toc="default">
          <t>As specified in <xref target="RFC0959" pageno="false" format="default" />, the REIN command returns the state of the connection to what it was immediately after the transport connection was opened.  This specification makes no changes to that behavior.  The effect of a HOST command MUST be reset if a REIN command is performed, and a new HOST command MUST be issued in order to connect to a virtual host.</t>
        </section>
        <section title="User-PI usage of HOST" toc="default">
          <t>A user-PI that conforms to this specification MUST send the HOST command after opening the transport connection, or after any REIN command, before attempting to authenticate the user with the USER command.  The following example illustrates what a typical login sequence might look like when the HOST command is used:</t>
          <t>
            <figure title="" suppress-title="false" align="left" alt="" width="" height="">
              <artwork xml:space="preserve" name="" type="" align="left" alt="" width="" height=""><![CDATA[     C> HOST ftp.example.com
     S> 220 Host accepted
     C> USER foo
     S> 331 Password required
     C> PASS bar
     S> 230 User logged in]]></artwork>
            </figure>
          </t>
          <t>If a user-PI sends an additional HOST command before attempting to authenticate the user, a server-FTP process that conforms to this specification MUST treat the additional HOST command as though a previous HOST command was not sent, and return the appropriate reply for the new HOST command.  For example, if a user specifies the wrong virtual host by mistake, sending a subsequent HOST command will rectify the error.  The following example illustrates what the login sequence might look like when the HOST command is sent twice before a user has been authenticated:</t>
          <t>
            <figure title="" suppress-title="false" align="left" alt="" width="" height="">
              <artwork xml:space="preserve" name="" type="" align="left" alt="" width="" height=""><![CDATA[     C> HOST foo.example.com
     S> 220 Host accepted
     C> HOST bar.example.com
     S> 220 Host accepted
     C> USER foo
     S> 331 Password required
     C> PASS bar
     S> 230 User logged in]]></artwork>
            </figure>
          </t>
          <t>The HOST command can be used in combination with the ACCT command to differentiate between a user's various accounts on a specific virtual host.  In this scenario, the user-PI sends a HOST command which the server-PI uses to route activity to the correct virtual host; the user-PI sends credentials using the USER and PASS commands which the server-PI validates; then, the user-PI sends an ACCT command to specify any additional account information for the server-PI implementation.  The following example illustrates a sequential series of client commands that specify both a HOST and ACCT, with the server responses omitted for brevity:</t>
          <t>
            <figure title="" suppress-title="false" align="left" alt="" width="" height="">
              <artwork xml:space="preserve" name="" type="" align="left" alt="" width="" height=""><![CDATA[     C> HOST ftp.example.com
     C> USER foo
     C> PASS bar
     C> ACCT project1]]></artwork>
            </figure>
          </t>
          <t>This is also true when the HOST command is used with the AUTH and ADAT commands that are discussed in <xref target="RFC2228" pageno="false" format="default" /> and <xref target="RFC4217" pageno="false" format="default" />.  In this scenario, the user-PI sends a HOST command which the server-PI uses to route activity to the correct virtual host, then the user-PI uses the AUTH and ADAT commands to negotiate the security mechanism and relevant authentication token(s) with the server-PI, then the user-PI sends user credentials using the USER and PASS commands which the server-PI validates.  After which the user-PI MAY send an ACCT command to specify any additional account information for the server-PI implementation.  The following example illustrates a sequential series of client commands that specify both a HOST and ACCT when used in conjunction with the security commands that are discussed in <xref target="RFC2228" pageno="false" format="default" /> and <xref target="RFC4217" pageno="false" format="default" />, with the server responses omitted for brevity:</t>
          <t>
            <figure title="" suppress-title="false" align="left" alt="" width="" height="">
              <artwork xml:space="preserve" name="" type="" align="left" alt="" width="" height=""><![CDATA[     C> HOST ftp.example.com
     C> AUTH <mechanism-name>
     C> ADAT <base64data>
     C> USER foo
     C> PASS bar
     C> ACCT project1]]></artwork>
            </figure>
          </t>
        </section>
        <section title="State Diagrams" toc="default">
          <t>The state diagrams in this section illustrate typical sequences for command and reply interchange between the user-PI and server-PI.  These diagrams are modeled on the similar diagrams in section 6 of <xref target="RFC0959" pageno="false" format="default" />.</t>
          <t>In each diagram, the (B) "begin" state is assumed to occur after the transport connection has opened, or after a REIN command has succeeded.  Other commands (such as FEAT <xref target="RFC2389" pageno="false" format="default" />) that require no authentication may have intervened.</t>
          <t>Additionally, a three-digit reply indicates a precise server reply code.  A single digit on a reply path indicates any server reply that begins with that digit, except where a precise server reply code is defined on another path.  For example, a single digit "5" will apply to "500", "501", "502", etc., when those reply codes are not expressly defined in the diagram.  For each command there are three possible outcomes: success (S), failure (F), and error (E).  In the state diagrams below we use the symbol B for "begin", and the symbol W for "wait for reply".</t>
          <t>In each of these diagrams, a REIN command will return the diagram to the (B) "begin" state.</t>
          <t>
            <figure title="Figure 1: Typical login sequence with HOST command" suppress-title="false" align="left" alt="" width="" height="">
              <preamble>The state diagram in Figure 1 shows a typical sequence of flow of control when HOST is used with USER and PASS to log in to a particular FTP virtual host.</preamble>
              <artwork xml:space="preserve" name="" type="" align="left" alt="" width="" height=""><![CDATA[
           +---+   HOST    +---+ 1,3,5
           | B |---------->| W |-----------------
           +---+           +---+                 |
                            | |                  |
                  2,500,502 | | 4,501,503,504    |
              --------------   -----------       |
             |                            |      V
             V                   1        |    +---+
           +---+   USER    +---+-------------->| E |
           |   |---------->| W | 2        |    +---+
           +---+           +---+-------   |      ^
                            | |        |  |      |
                          3 | | 4,5    |  |      |
              --------------   -----   |  |      |
             |                      |  |  |      |
             |                -------------------
             |              1|      |  |  |
             V               |      |   ------>+---+
           +---+   PASS    +---+ 2  |     |    | S |
           |   |---------->| W |-------------->+---+
           +---+           +---+    |     |
                             |      |     |
                             |4,5   |     |
                             |      |      --->+---+
                             |       --------->| F |
                              ---------------->+---+]]></artwork>
            </figure>
          </t>
          <t>
            <figure title="Figure 2: Login sequence with HOST and ACCT commands" suppress-title="false" align="left" alt="" width="" height="">
              <preamble>After a user has logged in, an additional account may be required by the server and specified by the client by using ACCT command.  With this in mind, the state diagram in Figure 2 shows a typical sequence of flow of control when HOST is used with USER and PASS to log in to an FTP virtual host and ACCT is used to specify an account.</preamble>
              <artwork xml:space="preserve" name="" type="" align="left" alt="" width="" height=""><![CDATA[
           +---+   HOST    +---+ 1,3,5
           | B |---------->| W |-----------------
           +---+           +---+                 |
                            | |                  |
                  2,500,502 | | 4,501,503,504    |
              --------------   -------------     |
             |                              |    |
             V                   1          |    V
           +---+   USER    +---+-------------->+---+
           |   |---------->| W | 2       ----->| E |
           +---+           +---+------  |  --->+---+
                            | |       | | | |
                          3 | | 4,5   | | | |
              --------------   -----  | | | |
             |                      | | | | |
             |                      | | | | |
             |                ----------  | |
             |              1|      | |   | |
             V               |      | |   | |
           +---+   PASS    +---+ 2  |  ------->+---+
           |   |---------->| W |-------------->| S |
           +---+           +---+   ----------->+---+
                            | |   | |     | |
                          3 | |4,5| |     | |
              --------------   --------   |  ----
             |                    | |  |  |      |
             |                    | |  |  |      |
             |                ------------       |
             |            1,3|    | |  |         |
             V               |   2| |  |         V
           +---+   ACCT    +---+--  |   ------>+---+
           |   |---------->| W | 4,5 --------->| F |
           +---+           +---+-------------->+---+]]></artwork>
            </figure>
          </t>
          <t>
            <figure title="Figure 3: Login sequence with HOST and AUTH/ADAT commands" suppress-title="false" align="left" alt="" width="" height="">
              <preamble>When the HOST command is used in combination with the FTP security extensions that were introduced in <xref target="RFC2228" pageno="false" format="default" />, it SHOULD precede the security handshake.  This allows both user-PI and server-FTP processes to map an FTP HOST to security data appropriately.  The state diagram in Figure 3 shows a typical sequence of flow of control when HOST is used with the AUTH and ADAT commands that are discussed in <xref target="RFC2228" pageno="false" format="default" />.</preamble>
              <artwork xml:space="preserve" name="" type="" align="left" alt="" width="" height=""><![CDATA[
           +---+   HOST    +---+ 1,3,5
           | B |---------->| W |------------------ 
           +---+           +---+                  |
                            | |                   |
                  2,500,502 | | 4,501,503,504     |
              --------------   -------------      |
             |                              |     |
             V                              |     |
           +---+   AUTH    +---+ 4,5        |     |
           |   |---------->| W |----------->|     |
           +---+           +---+            |     |
                        334 | |             |     |
              --------------  |             |     |
             |            234 |             |     |
             |    ------------              |     |
             V   |               4,5        |     |
           +---+ | ADAT    +---+----------->|     |
           |   |---------->| W | 335        |     |
           +---+ |         +---+-----       |     |
             ^   |           |       |      |     |
             |   |           |       |      |     |
              -----------------------       |     |
                 |           |              |     |
             ----        235 |              |     |
            |  --------------               |     |
            | |                             |     V
            V V                  1          |   +---+
           +---+   USER    +---+--------------->| E |
           |   |---------->| W | 2          |   +---+
           +---+           +---+-------     |     ^
                            | |        |    |     |
                          3 | | 4,5    |    |     |
              --------------   ------  |    |     |
             |                       | |    |     |
             |                --------------------
             |              1|       | |    |
             V               |       |  ------->+---+
           +---+   PASS    +---+ 2   |      |   | S |
           |   |---------->| W |--------------->+---+
           +---+           +---+     |      |  
                             |       |      |
                             |4,5    |      |
                             |       |       -->+---+
                             |        --------->| F |
                              ----------------->+---+]]></artwork>
            </figure>
          </t>
          <t>
            <figure title="Figure 4: Login sequence with HOST and AUTH/ADAT/ACCT commands" suppress-title="false" align="left" alt="" width="" height="">
              <preamble>After a user has logged in with the security commands that are discussed in <xref target="RFC2228" pageno="false" format="default" />, an additional account may be required by the server and specified by the client by using ACCT command.  The state diagram in Figure 4 shows a typical sequence of flow of control when HOST is used with the AUTH and ADAT commands to log in to an FTP virtual host and ACCT is used to specify an account.</preamble>
              <artwork xml:space="preserve" name="" type="" align="left" alt="" width="" height=""><![CDATA[
           +---+   HOST    +---+ 1,3,5
           | B |---------->| W |------------------ 
           +---+           +---+                  |
                            | |                   |
                  2,500,502 | | 4,501,503,504     |
             +--------------   --------------     |
             |                               |    |
             V                               |    |
           +---+   AUTH    +---+ 4,5         |    |
           |   |---------->| W |------------>|    |
           +---+           +---+             |    |
                        334 | |              |    |
              --------------  |              |    |
             |            234 |              |    |
             |    ------------               |    |
             V   |               4,5         |    |
           +---+ | ADAT    +---+------------>|    |
           |   |---------->| W | 335         |    |
           +---+ |         +---+-----        |    |
             ^   |           |       |       |    |
             |   |           |       |       |    |
              -----------------------        |    |
                 |           |               |    |
             ----         235|               |    |
            |  --------------                |    |
            | |                              |    |
            V V                  1           |    V
           +---+   USER    +---+--------------->+---+
           |   |---------->| W | 2        ----->| E |
           +---+           +---+-------  |  --->+---+
                            | |        | | | |
                          3 | | 4,5    | | | |
              --------------   ------  | | | |
             |                       | | | | |
             |                -----------  | |
             |              1|       | |   | |
             V               |       | |   | |
           +---+   PASS    +---+ 2   |  ------->+---+
           |   |---------->| W |--------------->| S |
           +---+           +---+   ------------>+---+
                            | |   |  |     | |
                          3 | |4,5|  |     | |
              --------------   ---------   |  ----
             |                    |  |  |  |      |
             |                -------------       |
             |            1,3|    |  |  |         |
             V               |   2|  |  |         V
           +---+   ACCT    +---+--   |   ------>+---+
           |   |---------->| W | 4,5  --------->| F |
           +---+           +---+--------------->+---+]]></artwork>
            </figure>
          </t>
        </section>
      </section>
      <section title="HOST command errors" toc="default">
        <t>The server-PI SHOULD reply with a 500 or 502 reply if the HOST command is unrecognized or unimplemented.</t>
        <t>As discussed in section 3 of this document, if a HOST command is sent after a user has been authenticated, the server MUST treat the situation as an invalid sequence of commands and return a 503 reply.</t>
        <t>A 501 reply SHOULD be sent if the hostname given is syntactically invalid, and a 504 reply SHOULD be sent if a syntactically valid hostname is not a valid virtual host name for the server.  In all such cases, the server-FTP process MUST do one of the following:</t>
        <t>
          <list style="letters">
            <t>Ignore the HOST command and act as if a HOST command had not been sent.  A user-FTP process MAY then send a subsequent HOST command with a different hostname.</t>
            <t>Close the connection.</t>
          </list>
        </t>
        <t>A user-PI receiving a 500 or 502 reply to a HOST command SHOULD assume that the server-PI does not implement virtual servers by using the HOST command.  The user-PI MAY then proceed to login as if the HOST command had not been sent.</t>
        <t>A user-PI receiving an error reply that is different from the errors that have been described here SHOULD assume that the virtual HOST is unavailable, and terminate communications.</t>
        <t>A server-PI that receives a USER command to begin the authentication sequence without having received a HOST command SHOULD NOT reject the USER command.  Clients conforming to earlier FTP specifications do not send HOST commands.  In this case the server MAY act as if some default virtual host had been explicitly selected, or MAY enter an environment that is different from that of any supported virtual hosts, perhaps one in which a union of all available accounts exists and which presents an NVFS that appears to contain subdirectories that contain the NVFS for all supported virtual hosts.</t>
      </section>
      <section title="FEAT response for HOST command" toc="default">
        <t>When replying to the FEAT command <xref target="RFC2389" pageno="false" format="default" />, a server-FTP process that supports the HOST command MUST include a line containing the single word "HOST".  This word is case insensitive, and MAY be sent in any mixture of upper or lower case, however it SHOULD be sent in upper case.  That is, the response SHOULD be:</t>
        <t>
          <figure title="" suppress-title="false" align="left" alt="" width="" height="">
            <artwork xml:space="preserve" name="" type="" align="left" alt="" width="" height=""><![CDATA[     C> FEAT
     S> 211- <any descriptive text>
     S>  ...
     S>  HOST
     S>  ...
     S> 211 End]]></artwork>
          </figure>
        </t>
        <t>The ellipses indicate place holders where other features may be included, and are not required.  The one-space indentation of the feature lines is mandatory <xref target="RFC2389" pageno="false" format="default" />.</t>
      </section>
    </section>
    <section anchor="Security" title="Security Considerations" toc="default">
      <t>As discussed in section 3 of this document, a server implementation MUST treat an additional HOST command that was sent before a user has been authenticated as though a previous HOST command was not sent.  In this situation, the server implementation MUST reset the authentication environment, as that would allow for segregation between the security environments for each virtual host on an FTP server.  The implementation details for security environments may vary greatly based on the requirements of each server implementation and operating system, and those details are outside the scope of the protocol itself.  For example, a virtual host "foo.example.com" on an FTP server might use a specific username and password list, while the virtual host "bar.example.com" on the same FTP server might use a different username and password list.  In such a scenario, resetting the security environment is necessary for the virtual servers to appear to behave independently from a client perspective, while the actual server implementation details are irrelevant at the protocol level.</t>
      <t>Section 15.1.1 of <xref target="RFC4217" pageno="false" format="default" /> discusses the use of X.509 certificates for server authentication. Taking the information from that document into account, when securing FTP sessions with the security mechanisms that are defined in <xref target="RFC4217" pageno="false" format="default" />, client implementations SHOULD verify that the hostname they specify in the parameter for the HOST command matches the identity that is specified in the server's X.509 certificate in order to prevent man-in-the-middle attacks.</t>
      <t>A general discussion of issues related to the security of FTP can be found in <xref target="RFC2577" pageno="false" format="default" />.</t>
    </section>
    <section anchor="IANA" title="IANA Considerations" toc="default">
      <t>IANA is requested to register the following FTP extension according to the procedure established by <xref target="RFC5797" pageno="false" format="default"></xref>:</t>
      <texttable title="" suppress-title="false" align="center" style="full">
        <ttcol align="left">cmd</ttcol>
        <ttcol align="left">FEAT
Code</ttcol>
        <ttcol align="left">description</ttcol>
        <ttcol align="left">type</ttcol>
        <ttcol align="left">conf</ttcol>
        <ttcol align="left">RFC#s/References
and Notes</ttcol>
        <c>HOST</c>
        <c>HOST</c>
        <c>Hostname</c>
        <c>a</c>
        <c>o</c>
        <c>TBD</c>
        <postamble>NOTE TO RFC EDITOR: Please update TBD in the above table with the number of this document.</postamble>
      </texttable>
    </section>
  </middle>
  <back>
    <references title="Normative References">
      <reference anchor="RFC0959">
        <front>
          <title>File Transfer Protocol (FTP)</title>
          <author initials="J." surname="Postel"></author>
          <author initials="J." surname="Reynolds"></author>
          <date year="1985" month="October" />
        </front>
        <seriesInfo name="STD" value="9" />
        <seriesInfo name="RFC" value="959" />
      </reference>
      <reference anchor="RFC1034">
        <front>
          <title>Domain Names - Concepts and Facilities</title>
          <author initials="P." surname="Mockapetris"></author>
          <date year="1987" month="November"></date>
        </front>
        <seriesInfo name="STD" value="13" />
        <seriesInfo name="RFC" value="1034" />
      </reference>
      <reference anchor="RFC1035">
        <front>
          <title>Domain Names - Implementation and Specification</title>
          <author initials="P." surname="Mockapetris"></author>
          <date year="1987" month="November"></date>
        </front>
        <seriesInfo name="STD" value="13" />
        <seriesInfo name="RFC" value="1035" />
      </reference>
      <reference anchor="RFC1123">
        <front>
          <title>Requirements for Internet Hosts -- Application and Support</title>
          <author initials="R." surname="Braden" />
          <date year="1989" month="October" />
        </front>
        <seriesInfo name="STD" value="3" />
        <seriesInfo name="RFC" value="1123" />
      </reference>
      <reference anchor="RFC2119">
        <front>
          <title>Key words for use in RFCs to Indicate Requirement Levels</title>
          <author initials="S." surname="Bradner"></author>
          <date year="1997" month="March" />
        </front>
        <seriesInfo name="BCP" value="14" />
        <seriesInfo name="RFC" value="2119" />
      </reference>
      <reference anchor="RFC2228">
        <front>
          <title>FTP Security Extensions</title>
          <author initials="M." surname="Horowitz"></author>
          <author initials="S." surname="Lunt"></author>
          <date year="1997" month="October" />
        </front>
        <seriesInfo name="RFC" value="2228" />
      </reference>
      <reference anchor="RFC2389">
        <front>
          <title>Feature negotiation mechanism for the File Transfer Protocol</title>
          <author initials="P." surname="Hethmon"></author>
          <author initials="R." surname="Elz"></author>
          <date year="1998" month="August" />
        </front>
        <seriesInfo name="RFC" value="2389" />
      </reference>
      <reference anchor="RFC2640">
        <front>
          <title>Internationalization of the File Transfer Protocol</title>
          <author initials="W." surname="Curtin"></author>
          <date year="1999" month="July" />
        </front>
        <seriesInfo name="RFC" value="2640" />
      </reference>
      <reference anchor="RFC3492">
        <front>
          <title>Punycode: A Bootstring encoding of Unicode for Internationalized Domain Names in Applications (IDNA)</title>
          <author initials="A." surname="Costello"></author>
          <date year="2003" month="March" />
        </front>
        <seriesInfo name="RFC" value="3492" />
      </reference>
      <reference anchor="RFC4217">
        <front>
          <title>Securing FTP with TLS</title>
          <author initials="P." surname="Ford-Hutchinson"></author>
          <date year="2005" month="October" />
        </front>
        <seriesInfo name="RFC" value="4217" />
      </reference>
      <reference anchor="RFC5234">
        <front>
          <title>Augmented BNF for Syntax Specifications: ABNF</title>
          <author initials="D." surname="Crocker"></author>
          <author initials="P." surname="Overell"></author>
          <date year="2008" month="January" />
        </front>
        <seriesInfo name="RFC" value="5234" />
      </reference>
    </references>
    <references title="Informative References">
      <reference anchor="RFC1945">
        <front>
          <title>Hypertext Transfer Protocol -- HTTP/1.0</title>
          <author initials="T." surname="Berners-Lee"></author>
          <author initials="R." surname="Fielding"></author>
          <author initials="H." surname="Frystyk"></author>
          <date year="1996" month="May" />
        </front>
        <seriesInfo name="RFC" value="1945" />
      </reference>
      <reference anchor="RFC2577">
        <front>
          <title>FTP Security Considerations</title>
          <author initials="M." surname="Allman"></author>
          <author initials="S." surname="Ostermann"></author>
          <date year="1999" month="May" />
        </front>
        <seriesInfo name="RFC" value="2577" />
      </reference>
      <reference anchor="RFC2616">
        <front>
          <title>Hypertext Transfer Protocol -- HTTP/1.1</title>
          <author initials="R." surname="Fielding"></author>
          <author initials="J." surname="Gettys"></author>
          <author initials="J." surname="Mogul"></author>
          <author initials="H." surname="Frystyk"></author>
          <author initials="L." surname="Masinter"></author>
          <author initials="P." surname="Leach"></author>
          <author initials="T." surname="Berners-Lee"></author>
          <date year="1999" month="June" />
        </front>
        <seriesInfo name="RFC" value="2616" />
      </reference>
      <reference anchor="RFC5797">
        <front>
          <title>FTP Command and Extension Registry</title>
          <author initials="J." surname="Klensin"></author>
          <author initials="A." surname="Hoenes"></author>
          <date month="March" year="2010" />
        </front>
        <seriesInfo name="RFC" value="5797" />
      </reference>
    </references>
    <section title="Unworkable Alternatives" toc="default">
      <t>Due to the level of scope for adding a new command to FTP, a brief discussion of suggested alternatives to a HOST command and their respective limitations is warranted.  The suggested alternatives that are discussed in this appendix have been proposed in the past, but each of these ideas was deemed insufficient for the reasons that are listed within each section of the appendix.</t>
      <section title="Overloading the CWD command" toc="default">
        <t>One suggested method to emulate a form of virtual hosts would be for the client to simply send a "CWD" command after connecting, using the virtual host name as the argument to the CWD command.  This would allow the server-FTP process to implement the file stores of the virtual hosts as sub-directories in its NVFS.  This suggestion is simple in concept, and most server-FTP implementations support this without requiring any code changes.  While this method is simple to describe, and to implement, it suffers from several drawbacks:</t>
        <t>
          <list style="letters">
            <t>The "CWD" command is available only after the user-PI has authenticated itself to the server-FTP process.  Thus, all virtual hosts would be required to share a common authentication scheme if they used this method.</t>
            <t>To make the virtual host truly transparent, either the server-FTP process needs to be modified to include information that shows the special nature of this first CWD command (negating most of the advantage of this scheme), or all users must see the same identical NVFS view upon connecting (they must connect in the same initial directory), or the NVFS must implement the full set of virtual host directories at each possible initial directory for any possible user.</t>
            <t>Unless the server is specially modified, a user connecting this way to a virtual host would be able to easily move to any other virtual host supported at the same server-FTP process, exposing the nature of the virtual host.</t>
          </list>
        </t>
      </section>
      <section title="Overloading the ACCT command" toc="default">
        <t>Another suggested method would be to simply overload the "ACCT" for FTP virtual hosts, but this proposal is unacceptable for several reasons with regard to when the ACCT command is sent during the request flow.  Sections 5.4 and 6 of <xref target="RFC0959" pageno="false" format="default" /> document the request flow for a login sequence as USER -&gt; PASS -&gt; ACCT.  This flow of commands may be acceptable when you are considering a single user having multiple accounts on an FTP server, but fails to differentiate between virtual hosts when you consider the following two issues:</t>
        <t>
          <list style="letters">
            <t>The first problem with overloading the ACCT command is certificate negotiation when using the FTP security extensions that are documented in <xref target="RFC2228" pageno="false" format="default" /> and <xref target="RFC4217" pageno="false" format="default" />.  In order to safeguard user credentials, security mechanism and certificate negotiation must occur before login credentials are sent by the client.  The problem with using the ACCT command in this scenario is that there is no way of ensuring that the certificate matches the correct virtual host before the user credentials are sent.</t>
            <t>The second problem with overloading the ACCT command is how user credentials are implemented for FTP virtual hosts.  FTP server implementations may allow the use of custom user credentials on a per-virtual-host basis.  For example, in one particular implementation the virtual host negotiation occurs, and then the user credentials are looked up using the account mechanism that is specific to that virtual host.  So once again the virtual host negotiation must take place before the user credentials are sent.</t>
          </list>
        </t>
      </section>
      <section title="Overloading the USER command" toc="default">
        <t>An additional suggestion would be to overload well-known syntax through the existing USER command, as illustrated in the following example:</t>
        <t>
          <figure title="" suppress-title="false" align="left" alt="" width="" height="">
            <artwork xml:space="preserve" name="" type="" align="left" alt="" width="" height=""><![CDATA[     C> USER foo@example.com
     S> 331 Password required
     C> PASS bar
     S> 230 User logged in]]></artwork>
          </figure>
        </t>
        <t>In this example, the user "foo" might be attempting to log on to the virtual host "example.com" on an FTP server.  This suggestion may seem plausible at first, but introduces several implementation problems.  For example:</t>
        <t>
          <list style="letters">
            <t>Some network environments already use the "username@hostname" syntax for network credentials, where the "hostname" portion refers to the location of the user's credentials within the network hierarchy.  Using the "foo@example.com" syntax it becomes difficult to differentiate between the user "foo" logging into a virtual host named "example.com" on an FTP server versus the user "foo@example.com" logging into an FTP server with no specified virtual host.</t>
            <t>When using the FTP security extensions that are documented in <xref target="RFC2228" pageno="false" format="default" /> and <xref target="RFC4217" pageno="false" format="default" />, security mechanism and certificate negotiation must occur before login credentials are sent by the client.  More specifically, the AUTH/ADAT commands must be sent before the USER command in order to safeguard user credentials.  If you overload the USER command, there is no way of ensuring that the certificate matches the correct virtual host before the user credentials are sent by the client.</t>
          </list>
        </t>
      </section>
      <section title="Conclusion" toc="default">
        <t>The conclusion from the examination of the existing possibilities seems to be that in order to obtain an adequate emulation of "real" FTP servers, client and server modifications to support virtual hosts are necessary.  Therefore a new FTP command seems the most likely solution to provide the required level of support.</t>
      </section>
    </section>
    <section anchor="Acknowledgements" title="Acknowledgements" toc="default">
      <t>Robert Elz and Paul Hethmon provided a detailed discussion of the HOST command in their Internet draft titled "Extensions to FTP" as part of their work with the FTPEXT Working Group at the IETF.  Their work formed the basis for much of this document, and their help has been greatly appreciated.  They would also like to credit Bernhard Rosenkraenzer for having first suggested and described the HOST command.</t>
      <t>Several people have provided a wealth of constructive feedback about earlier versions of this document that have helped to shape its development; many of their suggestions have been incorporated, and their contributions are gratefully acknowledged.  There are far too many to mention here, but authors of this document would like to specifically thank Alexey Melnikov, Alfred Hoenes, John Klensin, Joe Touch, Paul Ford-Hutchinson, Daniel Stenberg, Mykyta Yevstifeyev, and Anthony Bryan for their assistance.  In addition, Alec Rowell's help in making sections of this document more readable was invaluable.</t>
    </section>
  </back>
</rfc>
