home *** CD-ROM | disk | FTP | other *** search
/ Handbook of Infosec Terms 2.0 / Handbook_of_Infosec_Terms_Version_2.0_ISSO.iso / text / rfcs / rfc1813.txt < prev    next >
Text File  |  1996-05-07  |  235KB  |  3,388 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7. Network Working Group                                       B. Callaghan Request for Comments: 1813                                  B. Pawlowski Category: Informational                                      P. Staubach                                                   Sun Microsystems, Inc.                                                                June 1995 
  8.  
  9.                    NFS Version 3 Protocol Specification 
  10.  
  11. Status of this Memo 
  12.  
  13.    This memo provides information for the Internet community.    This memo does not specify an Internet standard of any kind.    Distribution of this memo is unlimited. 
  14.  
  15. IESG Note 
  16.  
  17.    Internet Engineering Steering Group comment: please note that    the IETF is not involved in creating or maintaining this    specification.  This is the significance of the specification    not being on the standards track. 
  18.  
  19. Abstract 
  20.  
  21.    This paper describes the NFS version 3 protocol.  This paper is    provided so that people can write compatible implementations. 
  22.  
  23. Table of Contents 
  24.  
  25.    1.    Introduction . . . . . . . . . . . . . . . . . . . . . . .   3    1.1     Scope of the NFS version 3 protocol  . . . . . . . . . .   4    1.2     Useful terms . . . . . . . . . . . . . . . . . . . . . .   5    1.3     Remote Procedure Call  . . . . . . . . . . . . . . . . .   5    1.4     External Data Representation . . . . . . . . . . . . . .   5    1.5     Authentication and Permission Checking . . . . . . . . .   7    1.6     Philosophy . . . . . . . . . . . . . . . . . . . . . . .   8    1.7     Changes from the NFS version 2 protocol  . . . . . . . .  11    2.    RPC Information  . . . . . . . . . . . . . . . . . . . . .  14    2.1     Authentication . . . . . . . . . . . . . . . . . . . . .  14    2.2     Constants  . . . . . . . . . . . . . . . . . . . . . . .  14    2.3     Transport address  . . . . . . . . . . . . . . . . . . .  14    2.4     Sizes  . . . . . . . . . . . . . . . . . . . . . . . . .  14    2.5     Basic Data Types . . . . . . . . . . . . . . . . . . . .  15    2.6     Defined Error Numbers  . . . . . . . . . . . . . . . . .  17    3.    Server Procedures  . . . . . . . . . . . . . . . . . . . .  27    3.1     General comments on attributes . . . . . . . . . . . . .  29    3.2     General comments on filenames  . . . . . . . . . . . . .  30    3.3.0   NULL: Do nothing . . . . . . . . . . . . . . . . . . . .  31 
  26.  
  27.  
  28.  
  29. Callaghan, el al             Informational                      [Page 1] 
  30.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  31.  
  32.     3.3.1   GETATTR: Get file attributes . . . . . . . . . . . . . .  32    3.3.2   SETATTR: Set file attributes . . . . . . . . . . . . . .  33    3.3.3   LOOKUP: Lookup filename  . . . . . . . . . . . . . . . .  37    3.3.4   ACCESS: Check access permission  . . . . . . . . . . . .  40    3.3.5   READLINK: Read from symbolic link  . . . . . . . . . . .  44    3.3.6   READ: Read from file . . . . . . . . . . . . . . . . . .  46    3.3.7   WRITE: Write to file . . . . . . . . . . . . . . . . . .  49    3.3.8   CREATE: Create a file  . . . . . . . . . . . . . . . . .  54    3.3.9   MKDIR: Create a directory  . . . . . . . . . . . . . . .  58    3.3.10  SYMLINK: Create a symbolic link  . . . . . . . . . . . .  61    3.3.11  MKNOD: Create a special device . . . . . . . . . . . . .  63    3.3.12  REMOVE: Remove a file  . . . . . . . . . . . . . . . . .  67    3.3.13  RMDIR: Remove a directory  . . . . . . . . . . . . . . .  69    3.3.14  RENAME: Rename a file or directory . . . . . . . . . . .  71    3.3.15  LINK: Create link to an object . . . . . . . . . . . . .  74    3.3.16  READDIR: Read From directory . . . . . . . . . . . . . .  76    3.3.17  READDIRPLUS: Extended read from directory  . . . . . . .  80    3.3.18  FSSTAT: Get dynamic file system information  . . . . . .  84    3.3.19  FSINFO: Get static file system information . . . . . . .  86    3.3.20  PATHCONF: Retrieve POSIX information . . . . . . . . . .  90    3.3.21  COMMIT: Commit cached data on a server to stable storage  92    4.    Implementation issues  . . . . . . . . . . . . . . . . . .  96    4.1     Multiple version support . . . . . . . . . . . . . . . .  96    4.2     Server/client relationship . . . . . . . . . . . . . . .  96    4.3     Path name interpretation . . . . . . . . . . . . . . . .  97    4.4     Permission issues  . . . . . . . . . . . . . . . . . . .  98    4.5     Duplicate request cache  . . . . . . . . . . . . . . . .  99    4.6     File name component handling . . . . . . . . . . . . . . 101    4.7     Synchronous modifying operations . . . . . . . . . . . . 101    4.8     Stable storage . . . . . . . . . . . . . . . . . . . . . 101    4.9     Lookups and name resolution  . . . . . . . . . . . . . . 102    4.10    Adaptive retransmission  . . . . . . . . . . . . . . . . 102    4.11    Caching policies . . . . . . . . . . . . . . . . . . . . 102    4.12    Stable versus unstable writes. . . . . . . . . . . . . . 103    4.13    32 bit clients/servers and 64 bit clients/servers. . . . 104    5.    Appendix I: Mount protocol . . . . . . . . . . . . . . . . 106    5.1     RPC Information  . . . . . . . . . . . . . . . . . . . . 106    5.1.1     Authentication . . . . . . . . . . . . . . . . . . . . 106    5.1.2     Constants  . . . . . . . . . . . . . . . . . . . . . . 106    5.1.3     Transport address  . . . . . . . . . . . . . . . . . . 106    5.1.4     Sizes  . . . . . . . . . . . . . . . . . . . . . . . . 106    5.1.5     Basic Data Types . . . . . . . . . . . . . . . . . . . 106    5.2     Server Procedures  . . . . . . . . . . . . . . . . . . . 107    5.2.0     NULL: Do nothing . . . . . . . . . . . . . . . . . . . 108    5.2.1     MNT: Add mount entry . . . . . . . . . . . . . . . . . 109    5.2.2     DUMP: Return mount entries . . . . . . . . . . . . . . 110    5.2.3     UMNT: Remove mount entry . . . . . . . . . . . . . . . 111    5.2.4     UMNTALL: Remove all mount entries  . . . . . . . . . . 112 
  33.  
  34.  
  35.  
  36. Callaghan, el al             Informational                      [Page 2] 
  37.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  38.  
  39.     5.2.5     EXPORT: Return export list . . . . . . . . . . . . . . 113    6.    Appendix II: Lock manager protocol . . . . . . . . . . . . 114    6.1     RPC Information  . . . . . . . . . . . . . . . . . . . . 114    6.1.1     Authentication . . . . . . . . . . . . . . . . . . . . 114    6.1.2     Constants  . . . . . . . . . . . . . . . . . . . . . . 114    6.1.3     Transport Address  . . . . . . . . . . . . . . . . . . 115    6.1.4     Basic Data Types . . . . . . . . . . . . . . . . . . . 115    6.2     NLM Procedures . . . . . . . . . . . . . . . . . . . . . 118    6.2.0     NULL: Do nothing . . . . . . . . . . . . . . . . . . . 120    6.3     Implementation issues  . . . . . . . . . . . . . . . . . 120    6.3.1     64-bit offsets and lengths . . . . . . . . . . . . . . 120    6.3.2     File handles . . . . . . . . . . . . . . . . . . . . . 120    7.    Appendix III: Bibliography . . . . . . . . . . . . . . . . 122    8.    Security Considerations  . . . . . . . . . . . . . . . . . 125    9.    Acknowledgements . . . . . . . . . . . . . . . . . . . . . 125    10.   Authors' Addresses . . . . . . . . . . . . . . . . . . . . 126 
  40.  
  41. 1. Introduction 
  42.  
  43.    Sun's NFS protocol provides transparent remote access to shared    file systems across networks. The NFS protocol is designed to be    machine, operating system, network architecture, and transport    protocol independent. This independence is achieved through the    use of Remote Procedure Call (RPC) primitives built on top of an    eXternal Data Representation (XDR).  Implementations of the NFS    version 2 protocol exist for a variety of machines, from personal    computers to supercomputers. The initial version of the NFS    protocol is specified in the Network File System Protocol    Specification [RFC1094]. A description of the initial    implementation can be found in [Sandberg]. 
  44.  
  45.    The supporting MOUNT protocol performs the operating    system-specific functions that allow clients to attach remote    directory trees to a point within the local file system. The    mount process also allows the server to grant remote access    privileges to a restricted set of clients via export control. 
  46.  
  47.    The Lock Manager provides support for file locking when used in    the NFS environment. The Network Lock Manager (NLM) protocol    isolates the inherently stateful aspects of file locking into a    separate protocol. 
  48.  
  49.    A complete description of the above protocols and their    implementation is to be found in [X/OpenNFS]. 
  50.  
  51.    The purpose of this document is to: 
  52.  
  53.  
  54.  
  55.  
  56.  
  57. Callaghan, el al             Informational                      [Page 3] 
  58.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  59.  
  60.          o Specify the NFS version 3 protocol. 
  61.  
  62.         o Describe semantics of the protocol through annotation           and description of intended implementation. 
  63.  
  64.         o Specify the MOUNT version 3 protocol. 
  65.  
  66.         o Briefly describe the changes between the NLM version 3           protocol and the NLM version 4 protocol. 
  67.  
  68.    The normative text is the description of the RPC procedures and    arguments and results, which defines the over-the-wire protocol,    and the semantics of those procedures. The material describing    implementation practice aids the understanding of the protocol    specification and describes some possible implementation issues    and solutions. It is not possible to describe all implementations    and the UNIX operating system implementation of the NFS version 3    protocol is most often used to provide examples. Given that, the    implementation discussion does not bear the authority of the    description of the over-the-wire protocol itself. 
  69.  
  70. 1.1 Scope of the NFS version 3 protocol 
  71.  
  72.    This revision of the NFS protocol addresses new requirements.    The need to support larger files and file systems has prompted    extensions to allow 64 bit file sizes and offsets. The revision    enhances security by adding support for an access check to be    done on the server. Performance modifications are of three    types: 
  73.  
  74.    1. The number of over-the-wire packets for a given       set of file operations is reduced by returning file       attributes on every operation, thus decreasing the number       of calls to get modified attributes. 
  75.  
  76.    2. The write throughput bottleneck caused by the synchronous       definition of write in the NFS version 2 protocol has been       addressed by adding support so that the NFS server can do       unsafe writes. Unsafe writes are writes which have not       been committed to stable storage before the operation       returns.  This specification defines a method for       committing these unsafe writes to stable storage in a       reliable way. 
  77.  
  78.    3. Limitations on transfer sizes have been relaxed. 
  79.  
  80.    The ability to support multiple versions of a protocol in RPC    will allow implementors of the NFS version 3 protocol to define 
  81.  
  82.  
  83.  
  84. Callaghan, el al             Informational                      [Page 4] 
  85.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  86.  
  87.     clients and servers that provide backwards compatibility with    the existing installed base of NFS version 2 protocol    implementations. 
  88.  
  89.    The extensions described here represent an evolution of the    existing NFS protocol and most of the design features of the    NFS protocol described in [Sandberg] persist. See Changes    from the NFS version 2 protocol on page 11 for a more    detailed summary of the changes introduced by this revision. 
  90.  
  91. 1.2 Useful terms 
  92.  
  93.    In this specification, a "server" is a machine that provides    resources to the network; a "client" is a machine that accesses    resources over the network; a "user" is a person logged in on a    client; an "application" is a program that executes on a client. 
  94.  
  95. 1.3 Remote Procedure Call 
  96.  
  97.    The Sun Remote Procedure Call specification provides a    procedure-oriented interface to remote services. Each server    supplies a program, which is a set of procedures. The NFS    service is one such program. The combination of host address,    program number, version number, and procedure number specify one    remote service procedure.  Servers can support multiple versions    of a program by using different protocol version numbers. 
  98.  
  99.    The NFS protocol was designed to not require any specific level    of reliability from its lower levels so it could potentially be    used on many underlying transport protocols. The NFS service is    based on RPC which provides the abstraction above lower level    network and transport protocols. 
  100.  
  101.    The rest of this document assumes the NFS environment is    implemented on top of Sun RPC, which is specified in [RFC1057].    A complete discussion is found in [Corbin]. 
  102.  
  103. 1.4 External Data Representation 
  104.  
  105.    The eXternal Data Representation (XDR) specification provides a    standard way of representing a set of data types on a network.    This solves the problem of different byte orders, structure    alignment, and data type representation on different,    communicating machines. 
  106.  
  107.    In this document, the RPC Data Description Language is used to    specify the XDR format parameters and results to each of the RPC    service procedures that an NFS server provides. The RPC Data 
  108.  
  109.  
  110.  
  111. Callaghan, el al             Informational                      [Page 5] 
  112.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  113.  
  114.     Description Language is similar to declarations in the C    programming language. A few new constructs have been added.    The notation: 
  115.  
  116.       string  name[SIZE];       string  data<DSIZE>; 
  117.  
  118.    defines name, which is a fixed size block of SIZE bytes, and    data, which is a variable sized block of up to DSIZE bytes. This    notation indicates fixed-length arrays and arrays with a    variable number of elements up to a fixed maximum. A    variable-length definition with no size specified means there is    no maximum size for the field. 
  119.  
  120.    The discriminated union definition: 
  121.  
  122.       union example switch (enum status) {            case OK:               struct {                  filename      file1;                  filename      file2;                  integer       count;               }            case ERROR:               struct {                  errstat       error;                  integer       errno;               }            default:               void;       } 
  123.  
  124.    defines a structure where the first thing over the network is an    enumeration type called status. If the value of status is OK,    the next thing on the network will be the structure containing    file1, file2, and count. Else, if the value of status is ERROR,    the next thing on the network will be a structure containing    error and errno.  If the value of status is neither OK nor    ERROR, then there is no more data in the structure. 
  125.  
  126.    The XDR type, hyper, is an 8 byte (64 bit) quantity. It is used    in the same way as the integer type. For example: 
  127.  
  128.       hyper          foo;       unsigned hyper bar; 
  129.  
  130.    foo is an 8 byte signed value, while bar is an 8 byte unsigned    value. 
  131.  
  132.  
  133.  
  134. Callaghan, el al             Informational                      [Page 6] 
  135.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  136.  
  137.     Although RPC/XDR compilers exist to generate client and server    stubs from RPC Data Description Language input, NFS    implementations do not require their use. Any software that    provides equivalent encoding and decoding to the canonical    network order of data defined by XDR can be used to interoperate    with other NFS implementations. 
  138.  
  139.    XDR is described in [RFC1014]. 
  140.  
  141. 1.5 Authentication and Permission Checking 
  142.  
  143.    The RPC protocol includes a slot for authentication parameters    on every call. The contents of the authentication parameters are    determined by the type of authentication used by the server and    client. A server may support several different flavors of    authentication at once. The AUTH_NONE flavor provides null    authentication, that is, no authentication information is    passed. The AUTH_UNIX flavor provides UNIX-style user ID, group    ID, and groups with each call. The AUTH_DES flavor provides    DES-encrypted authentication parameters based on a network-wide    name, with session keys exchanged via a public key scheme. The    AUTH_KERB flavor provides DES encrypted authentication    parameters based on a network-wide name with session keys    exchanged via Kerberos secret keys. 
  144.  
  145.    The NFS server checks permissions by taking the credentials from    the RPC authentication information in each remote request. For    example, using the AUTH_UNIX flavor of authentication, the    server gets the user's effective user ID, effective group ID and    groups on each call, and uses them to check access. Using user    ids and group ids implies that the client and server either    share the same ID list or do local user and group ID mapping.    Servers and clients must agree on the mapping from user to uid    and from group to gid, for those sites that do not implement a    consistent user ID and group ID space. In practice, such mapping    is typically performed on the server, following a static mapping    scheme or a mapping established by the user from a client at    mount time. 
  146.  
  147.    The AUTH_DES and AUTH_KERB style of authentication is based on a    network-wide name. It provides greater security through the use    of DES encryption and public keys in the case of AUTH_DES, and    DES encryption and Kerberos secret keys (and tickets) in the    AUTH_KERB case. Again, the server and client must agree on the    identity of a particular name on the network, but the name to    identity mapping is more operating system independent than the    uid and gid mapping in AUTH_UNIX. Also, because the    authentication parameters are encrypted, a malicious user must 
  148.  
  149.  
  150.  
  151. Callaghan, el al             Informational                      [Page 7] 
  152.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  153.  
  154.     know another users network password or private key to masquerade    as that user. Similarly, the server returns a verifier that is    also encrypted so that masquerading as a server requires knowing    a network password. 
  155.  
  156.    The NULL procedure typically requires no authentication. 
  157.  
  158. 1.6 Philosophy 
  159.  
  160.    This specification defines the NFS version 3 protocol, that is    the over-the-wire protocol by which a client accesses a server.    The protocol provides a well-defined interface to a server's    file resources. A client or server implements the protocol and    provides a mapping of the local file system semantics and    actions into those defined in the NFS version 3 protocol.    Implementations may differ to varying degrees, depending on the    extent to which a given environment can support all the    operations and semantics defined in the NFS version 3 protocol.    Although implementations exist and are used to illustrate    various aspects of the NFS version 3 protocol, the protocol    specification itself is the final description of how clients    access server resources. 
  161.  
  162.    Because the NFS version 3 protocol is designed to be    operating-system independent, it does not necessarily match the    semantics of any existing system. Server implementations are    expected to make a best effort at supporting the protocol.  If a    server cannot support a particular protocol procedure, it may    return the error, NFS3ERR_NOTSUP, that indicates that the    operation is not supported.  For example, many operating systems    do not support the notion of a hard link. A server that cannot    support hard links should return NFS3ERR_NOTSUP in response to a    LINK request. FSINFO describes the most commonly unsupported    procedures in the properties bit map.  Alternatively, a server    may not natively support a given operation, but can emulate it    in the NFS version 3 protocol implementation to provide greater    functionality. 
  163.  
  164.    In some cases, a server can support most of the semantics    described by the protocol but not all. For example, the ctime    field in the fattr structure gives the time that a file's    attributes were last modified. Many systems do not keep this    information. In this case, rather than not support the GETATTR    operation, a server could simulate it by returning the last    modified time in place of ctime.  Servers must be careful when    simulating attribute information because of possible side    effects on clients. For example, many clients use file    modification times as a basis for their cache consistency 
  165.  
  166.  
  167.  
  168. Callaghan, el al             Informational                      [Page 8] 
  169.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  170.  
  171.     scheme. 
  172.  
  173.    NFS servers are dumb and NFS clients are smart. It is the    clients that do the work required to convert the generalized    file access that servers provide into a file access method that    is useful to applications and users. In the LINK example given    above, a UNIX client that received an NFS3ERR_NOTSUP error from    a server would do the recovery necessary to either make it look    to the application like the link request had succeeded or return    a reasonable error. In general, it is the burden of the client    to recover. 
  174.  
  175.    The NFS version 3 protocol assumes a stateless server    implementation.  Statelessness means that the server does not    need to maintain state about any of its clients in order to    function correctly. Stateless servers have a distinct advantage    over stateful servers in the event of a crash. With stateless    servers, a client need only retry a request until the server    responds; the client does not even need to know that the server    has crashed. See additional comments in Duplicate request cache    on page 99. 
  176.  
  177.    For a server to be useful, it holds nonvolatile state: data    stored in the file system. Design assumptions in the NFS version    3 protocol regarding flushing of modified data to stable storage    reduce the number of failure modes in which data loss can occur.    In this way, NFS version 3 protocol implementations can tolerate    transient failures, including transient failures of the network.    In general, server implementations of the NFS version 3 protocol    cannot tolerate a non-transient failure of the stable storage    itself. However, there exist fault tolerant implementations    which attempt to address such problems. 
  178.  
  179.    That is not to say that an NFS version 3 protocol server can't    maintain noncritical state. In many cases, servers will maintain    state (cache) about previous operations to increase performance.    For example, a client READ request might trigger a read-ahead of    the next block of the file into the server's data cache in the    anticipation that the client is doing a sequential read and the    next client READ request will be satisfied from the server's    data cache instead of from the disk. Read-ahead on the server    increases performance by overlapping server disk I/O with client    requests. The important point here is that the read-ahead block    is not necessary for correct server behavior. If the server    crashes and loses its memory cache of read buffers, recovery is    simple on reboot - clients will continue read operations    retrieving data from the server disk. 
  180.  
  181.  
  182.  
  183.  Callaghan, el al             Informational                      [Page 9] 
  184.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  185.  
  186.     Most data-modifying operations in the NFS protocol are    synchronous.  That is, when a data modifying procedure returns    to the client, the client can assume that the operation has    completed and any modified data associated with the request is    now on stable storage. For example, a synchronous client WRITE    request may cause the server to update data blocks, file system    information blocks, and file attribute information - the latter    information is usually referred to as metadata. When the WRITE    operation completes, the client can assume that the write data    is safe and discard it.  This is a very important part of the    stateless nature of the server. If the server did not flush    dirty data to stable storage before returning to the client, the    client would have no way of knowing when it was safe to discard    modified data. The following data modifying procedures are    synchronous: WRITE (with stable flag set to FILE_SYNC), CREATE,    MKDIR, SYMLINK, MKNOD, REMOVE, RMDIR, RENAME, LINK, and COMMIT. 
  187.  
  188.    The NFS version 3 protocol introduces safe asynchronous writes    on the server, when the WRITE procedure is used in conjunction    with the COMMIT procedure. The COMMIT procedure provides a way    for the client to flush data from previous asynchronous WRITE    requests on the server to stable storage and to detect whether    it is necessary to retransmit the data. See the procedure    descriptions of WRITE on page 49 and COMMIT on page 92. 
  189.  
  190.    The LOOKUP procedure is used by the client to traverse    multicomponent file names (pathnames). Each call to LOOKUP is    used to resolve one segment of a pathname. There are two reasons    for restricting LOOKUP to a single segment: it is hard to    standardize a common format for hierarchical file names and the    client and server may have different mappings of pathnames to    file systems. This would imply that either the client must break    the path name at file system attachment points, or the server    must know about the client's file system attachment points. In    NFS version 3 protocol implementations, it is the client that    constructs the hierarchical file name space using mounts to    build a hierarchy. Support utilities, such as the Automounter,    provide a way to manage a shared, consistent image of the file    name space while still being driven by the client mount    process. 
  191.  
  192.    Clients can perform caching in varied manner. The general    practice with the NFS version 2 protocol was to implement a    time-based client-server cache consistency mechanism. It is    expected NFS version 3 protocol implementations will use a    similar mechanism. The NFS version 3 protocol has some explicit    support, in the form of additional attribute information to    eliminate explicit attribute checks. However, caching is not 
  193.  
  194.  
  195.  
  196. Callaghan, el al             Informational                     [Page 10] 
  197.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  198.  
  199.     required, nor is any caching policy defined by the protocol.    Neither the NFS version 2 protocol nor the NFS version 3    protocol provide a means of maintaining strict client-server    consistency (and, by implication, consistency across client    caches). 
  200.  
  201. 1.7 Changes from the NFS Version 2 Protocol 
  202.  
  203.    The ROOT and WRITECACHE procedures have been removed. A MKNOD    procedure has been defined to allow the creation of special    files, eliminating the overloading of CREATE. Caching on the    client is not defined nor dictated by the NFS version 3    protocol, but additional information and hints have been added    to the protocol to allow clients that implement caching to    manage their caches more effectively. Procedures that affect the    attributes of a file or directory may now return the new    attributes after the operation has completed to optimize out a    subsequent GETATTR used in validating attribute caches. In    addition, operations that modify the directory in which the    target object resides return the old and new attributes of the    directory to allow clients to implement more intelligent cache    invalidation procedures.  The ACCESS procedure provides access    permission checking on the server, the FSSTAT procedure returns    dynamic information about a file system, the FSINFO procedure    returns static information about a file system and server, the    READDIRPLUS procedure returns file handles and attributes in    addition to directory entries, and the PATHCONF procedure    returns POSIX pathconf information about a file. 
  204.  
  205.    Below is a list of the important changes between the NFS version    2 protocol and the NFS version 3 protocol. 
  206.  
  207.    File handle size          The file handle has been increased to a variable-length          array of 64 bytes maximum from a fixed array of 32          bytes. This addresses some known requirements for a          slightly larger file handle size. The file handle was          converted from fixed length to variable length to          reduce local storage and network bandwidth requirements          for systems which do not utilize the full 64 bytes of          length. 
  208.  
  209.    Maximum data sizes          The maximum size of a data transfer used in the READ          and WRITE procedures is now set by values in the FSINFO          return structure. In addition, preferred transfer sizes          are returned by FSINFO. The protocol does not place any          artificial limits on the maximum transfer sizes. 
  210.  
  211.  
  212.  
  213. Callaghan, el al             Informational                     [Page 11] 
  214.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  215.  
  216.           Filenames and pathnames are now specified as strings of          variable length. The actual length restrictions are          determined by the client and server implementations as          appropriate.  The protocol does not place any          artificial limits on the length. The error,          NFS3ERR_NAMETOOLONG, is provided to allow the server to          return an indication to the client that it received a          pathname that was too long for it to handle. 
  217.  
  218.    Error return          Error returns in some instances now return data (for          example, attributes). nfsstat3 now defines the full set          of errors that can be returned by a server. No other          values are allowed. 
  219.  
  220.    File type          The file type now includes NF3CHR and NF3BLK for          special files. Attributes for these types include          subfields for UNIX major and minor devices numbers.          NF3SOCK and NF3FIFO are now defined for sockets and          fifos in the file system. 
  221.  
  222.    File attributes          The blocksize (the size in bytes of a block in the          file) field has been removed. The mode field no longer          contains file type information. The size and fileid          fields have been widened to eight-byte unsigned          integers from four-byte integers. Major and minor          device information is now presented in a distinct          structure.  The blocks field name has been changed to          used and now contains the total number of bytes used by          the file. It is also an eight-byte unsigned integer. 
  223.  
  224.    Set file attributes          In the NFS version 2 protocol, the settable attributes          were represented by a subset of the file attributes          structure; the client indicated those attributes which          were not to be modified by setting the corresponding          field to -1, overloading some unsigned fields. The set          file attributes structure now uses a discriminated          union for each field to tell whether or how to set that          field. The atime and mtime fields can be set to either          the server's current time or a time supplied by the          client. 
  225.  
  226.    LOOKUP          The LOOKUP return structure now includes the attributes          for the directory searched. 
  227.  
  228.  
  229.  
  230. Callaghan, el al             Informational                     [Page 12] 
  231.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  232.  
  233.     ACCESS          An ACCESS procedure has been added to allow an explicit          over-the-wire permissions check. This addresses known          problems with the superuser ID mapping feature in many          server implementations (where, due to mapping of root          user, unexpected permission denied errors could occur          while reading from or writing to a file).  This also          removes the assumption which was made in the NFS          version 2 protocol that access to files was based          solely on UNIX style mode bits. 
  234.  
  235.    READ          The reply structure includes a Boolean that is TRUE if          the end-of-file was encountered during the READ.  This          allows the client to correctly detect end-of-file. 
  236.  
  237.    WRITE          The beginoffset and totalcount fields were removed from          the WRITE arguments. The reply now includes a count so          that the server can write less than the requested          amount of data, if required. An indicator was added to          the arguments to instruct the server as to the level of          cache synchronization that is required by the client. 
  238.  
  239.    CREATE          An exclusive flag and a create verifier was added for          the exclusive creation of regular files. 
  240.  
  241.    MKNOD          This procedure was added to support the creation of          special files. This avoids overloading fields of CREATE          as was done in some NFS version 2 protocol          implementations. 
  242.  
  243.    READDIR          The READDIR arguments now include a verifier to allow          the server to validate the cookie. The cookie is now a          64 bit unsigned integer instead of the 4 byte array          which was used in the NFS version 2 protocol.  This          will help to reduce interoperability problems. 
  244.  
  245.    READDIRPLUS          This procedure was added to return file handles and          attributes in an extended directory list. 
  246.  
  247.    FSINFO          FSINFO was added to provide nonvolatile information          about a file system. The reply includes preferred and 
  248.  
  249.  
  250.  
  251. Callaghan, el al             Informational                     [Page 13] 
  252.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  253.  
  254.           maximum read transfer size, preferred and maximum write          transfer size, and flags stating whether links or          symbolic links are supported.  Also returned are          preferred transfer size for READDIR procedure replies,          server time granularity, and whether times can be set          in a SETATTR request. 
  255.  
  256.    FSSTAT          FSSTAT was added to provide volatile information about          a file system, for use by utilities such as the Unix          system df command. The reply includes the total size          and free space in the file system specified in bytes,          the total number of files and number of free file slots          in the file system, and an estimate of time between          file system modifications (for use in cache consistency          checking algorithms). 
  257.  
  258.    COMMIT          The COMMIT procedure provides the synchronization          mechanism to be used with asynchronous WRITE          operations. 
  259.  
  260. 2. RPC Information 
  261.  
  262. 2.1 Authentication 
  263.  
  264.    The NFS service uses AUTH_NONE in the NULL procedure. AUTH_UNIX,    AUTH_DES, or AUTH_KERB are used for all other procedures. Other    authentication types may be supported in the future. 
  265.  
  266. 2.2 Constants 
  267.  
  268.    These are the RPC constants needed to call the NFS Version 3    service.  They are given in decimal. 
  269.  
  270.       PROGRAM  100003       VERSION  3 
  271.  
  272. 2.3 Transport address 
  273.  
  274.    The NFS protocol is normally supported over the TCP and UDP    protocols.  It uses port 2049, the same as the NFS version 2    protocol. 
  275.  
  276. 2.4 Sizes 
  277.  
  278.    These are the sizes, given in decimal bytes, of various XDR    structures used in the NFS version 3 protocol: 
  279.  
  280.  
  281.  
  282. Callaghan, el al             Informational                     [Page 14] 
  283.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  284.  
  285.     NFS3_FHSIZE 64       The maximum size in bytes of the opaque file handle. 
  286.  
  287.    NFS3_COOKIEVERFSIZE 8       The size in bytes of the opaque cookie verifier passed by       READDIR and READDIRPLUS. 
  288.  
  289.    NFS3_CREATEVERFSIZE 8       The size in bytes of the opaque verifier used for       exclusive CREATE. 
  290.  
  291.    NFS3_WRITEVERFSIZE 8       The size in bytes of the opaque verifier used for       asynchronous WRITE. 
  292.  
  293. 2.5 Basic Data Types 
  294.  
  295.    The following XDR definitions are basic definitions that are    used in other structures. 
  296.  
  297.    uint64          typedef unsigned hyper uint64; 
  298.  
  299.    int64          typedef hyper int64; 
  300.  
  301.    uint32          typedef unsigned long uint32; 
  302.  
  303.    int32          typedef long int32; 
  304.  
  305.    filename3          typedef string filename3<>; 
  306.  
  307.    nfspath3          typedef string nfspath3<>; 
  308.  
  309.    fileid3          typedef uint64 fileid3; 
  310.  
  311.    cookie3          typedef uint64 cookie3; 
  312.  
  313.    cookieverf3          typedef opaque cookieverf3[NFS3_COOKIEVERFSIZE]; 
  314.  
  315.  
  316.  
  317.  
  318.  
  319. Callaghan, el al             Informational                     [Page 15] 
  320.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  321.  
  322.     createverf3          typedef opaque createverf3[NFS3_CREATEVERFSIZE]; 
  323.  
  324.    writeverf3          typedef opaque writeverf3[NFS3_WRITEVERFSIZE]; 
  325.  
  326.    uid3          typedef uint32 uid3; 
  327.  
  328.    gid3          typedef uint32 gid3; 
  329.  
  330.    size3          typedef uint64 size3; 
  331.  
  332.    offset3          typedef uint64 offset3; 
  333.  
  334.    mode3          typedef uint32 mode3; 
  335.  
  336.    count3          typedef uint32 count3; 
  337.  
  338.    nfsstat3       enum nfsstat3 {          NFS3_OK             = 0,          NFS3ERR_PERM        = 1,          NFS3ERR_NOENT       = 2,          NFS3ERR_IO          = 5,          NFS3ERR_NXIO        = 6,          NFS3ERR_ACCES       = 13,          NFS3ERR_EXIST       = 17,          NFS3ERR_XDEV        = 18,          NFS3ERR_NODEV       = 19,          NFS3ERR_NOTDIR      = 20,          NFS3ERR_ISDIR       = 21,          NFS3ERR_INVAL       = 22,          NFS3ERR_FBIG        = 27,          NFS3ERR_NOSPC       = 28,          NFS3ERR_ROFS        = 30,          NFS3ERR_MLINK       = 31,          NFS3ERR_NAMETOOLONG = 63,          NFS3ERR_NOTEMPTY    = 66,          NFS3ERR_DQUOT       = 69,          NFS3ERR_STALE       = 70,          NFS3ERR_REMOTE      = 71,          NFS3ERR_BADHANDLE   = 10001, 
  339.  
  340.  
  341.  
  342. Callaghan, el al             Informational                     [Page 16] 
  343.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  344.  
  345.           NFS3ERR_NOT_SYNC    = 10002,          NFS3ERR_BAD_COOKIE  = 10003,          NFS3ERR_NOTSUPP     = 10004,          NFS3ERR_TOOSMALL    = 10005,          NFS3ERR_SERVERFAULT = 10006,          NFS3ERR_BADTYPE     = 10007,          NFS3ERR_JUKEBOX     = 10008       }; 
  346.  
  347.    The nfsstat3 type is returned with every procedure's results    except for the NULL procedure. A value of NFS3_OK indicates that    the call completed successfully. Any other value indicates that    some error occurred on the call, as identified by the error    code. Note that the precise numeric encoding must be followed.    No other values may be returned by a server. Servers are    expected to make a best effort mapping of error conditions to    the set of error codes defined. In addition, no error    precedences are specified by this specification.  Error    precedences determine the error value that should be returned    when more than one error applies in a given situation. The error    precedence will be determined by the individual server    implementation. If the client requires specific error    precedences, it should check for the specific errors for    itself. 
  348.  
  349. 2.6 Defined Error Numbers 
  350.  
  351.    A description of each defined error follows: 
  352.  
  353.    NFS3_OK        Indicates the call completed successfully. 
  354.  
  355.    NFS3ERR_PERM        Not owner. The operation was not allowed because the        caller is either not a privileged user (root) or not the        owner of the target of the operation. 
  356.  
  357.    NFS3ERR_NOENT        No such file or directory. The file or directory name        specified does not exist. 
  358.  
  359.    NFS3ERR_IO        I/O error. A hard error (for example, a disk error)        occurred while processing the requested operation. 
  360.  
  361.    NFS3ERR_NXIO        I/O error. No such device or address. 
  362.  
  363.  
  364.  
  365.  Callaghan, el al             Informational                     [Page 17] 
  366.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  367.  
  368.     NFS3ERR_ACCES        Permission denied. The caller does not have the correct        permission to perform the requested operation. Contrast        this with NFS3ERR_PERM, which restricts itself to owner        or privileged user permission failures. 
  369.  
  370.    NFS3ERR_EXIST        File exists. The file specified already exists. 
  371.  
  372.    NFS3ERR_XDEV        Attempt to do a cross-device hard link. 
  373.  
  374.    NFS3ERR_NODEV        No such device. 
  375.  
  376.    NFS3ERR_NOTDIR        Not a directory. The caller specified a non-directory in        a directory operation. 
  377.  
  378.    NFS3ERR_ISDIR        Is a directory. The caller specified a directory in a        non-directory operation. 
  379.  
  380.    NFS3ERR_INVAL        Invalid argument or unsupported argument for an        operation. Two examples are attempting a READLINK on an        object other than a symbolic link or attempting to        SETATTR a time field on a server that does not support        this operation. 
  381.  
  382.    NFS3ERR_FBIG        File too large. The operation would have caused a file to        grow beyond the server's limit. 
  383.  
  384.    NFS3ERR_NOSPC        No space left on device. The operation would have caused        the server's file system to exceed its limit. 
  385.  
  386.    NFS3ERR_ROFS        Read-only file system. A modifying operation was        attempted on a read-only file system. 
  387.  
  388.    NFS3ERR_MLINK        Too many hard links. 
  389.  
  390.    NFS3ERR_NAMETOOLONG        The filename in an operation was too long. 
  391.  
  392.  
  393.  
  394.  Callaghan, el al             Informational                     [Page 18] 
  395.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  396.  
  397.     NFS3ERR_NOTEMPTY 
  398.  
  399.        An attempt was made to remove a directory that was not        empty. 
  400.  
  401.    NFS3ERR_DQUOT        Resource (quota) hard limit exceeded. The user's resource        limit on the server has been exceeded. 
  402.  
  403.    NFS3ERR_STALE        Invalid file handle. The file handle given in the        arguments was invalid. The file referred to by that file        handle no longer exists or access to it has been        revoked. 
  404.  
  405.    NFS3ERR_REMOTE        Too many levels of remote in path. The file handle given        in the arguments referred to a file on a non-local file        system on the server. 
  406.  
  407.    NFS3ERR_BADHANDLE        Illegal NFS file handle. The file handle failed internal        consistency checks. 
  408.  
  409.    NFS3ERR_NOT_SYNC        Update synchronization mismatch was detected during a        SETATTR operation. 
  410.  
  411.    NFS3ERR_BAD_COOKIE        READDIR or READDIRPLUS cookie is stale. 
  412.  
  413.    NFS3ERR_NOTSUPP        Operation is not supported. 
  414.  
  415.    NFS3ERR_TOOSMALL        Buffer or request is too small. 
  416.  
  417.    NFS3ERR_SERVERFAULT        An error occurred on the server which does not map to any        of the legal NFS version 3 protocol error values.  The        client should translate this into an appropriate error.        UNIX clients may choose to translate this to EIO. 
  418.  
  419.    NFS3ERR_BADTYPE        An attempt was made to create an object of a type not        supported by the server. 
  420.  
  421.  
  422.  
  423.  
  424.  
  425. Callaghan, el al             Informational                     [Page 19] 
  426.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  427.  
  428.     NFS3ERR_JUKEBOX        The server initiated the request, but was not able to        complete it in a timely fashion. The client should wait        and then try the request with a new RPC transaction ID.        For example, this error should be returned from a server        that supports hierarchical storage and receives a request        to process a file that has been migrated. In this case,        the server should start the immigration process and        respond to client with this error. 
  429.  
  430.    ftype3 
  431.  
  432.       enum ftype3 {          NF3REG    = 1,          NF3DIR    = 2,          NF3BLK    = 3,          NF3CHR    = 4,          NF3LNK    = 5,          NF3SOCK   = 6,          NF3FIFO   = 7       }; 
  433.  
  434.    The enumeration, ftype3, gives the type of a file. The type,    NF3REG, is a regular file, NF3DIR is a directory, NF3BLK is a    block special device file, NF3CHR is a character special device    file, NF3LNK is a symbolic link, NF3SOCK is a socket, and    NF3FIFO is a named pipe. Note that the precise enum encoding    must be followed. 
  435.  
  436.    specdata3 
  437.  
  438.       struct specdata3 {            uint32     specdata1;            uint32     specdata2;       }; 
  439.  
  440.    The interpretation of the two words depends on the type of file    system object. For a block special (NF3BLK) or character special    (NF3CHR) file, specdata1 and specdata2 are the major and minor    device numbers, respectively.  (This is obviously a    UNIX-specific interpretation.) For all other file types, these    two elements should either be set to 0 or the values should be    agreed upon by the client and server. If the client and server    do not agree upon the values, the client should treat these    fields as if they are set to 0. This data field is returned as    part of the fattr3 structure and so is available from all    replies returning attributes. Since these fields are otherwise    unused for objects which are not devices, out of band 
  441.  
  442.  
  443.  
  444. Callaghan, el al             Informational                     [Page 20] 
  445.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  446.  
  447.     information can be passed from the server to the client.    However, once again, both the server and the client must agree    on the values passed. 
  448.  
  449.    nfs_fh3 
  450.  
  451.       struct nfs_fh3 {          opaque       data<NFS3_FHSIZE>;       }; 
  452.  
  453.    The nfs_fh3 is the variable-length opaque object returned by the    server on LOOKUP, CREATE, SYMLINK, MKNOD, LINK, or READDIRPLUS    operations, which is used by the client on subsequent operations    to reference the file. The file handle contains all the    information the server needs to distinguish an individual file.    To the client, the file handle is opaque. The client stores file    handles for use in a later request and can compare two file    handles from the same server for equality by doing a    byte-by-byte comparison, but cannot otherwise interpret the    contents of file handles. If two file handles from the same    server are equal, they must refer to the same file, but if they    are not equal, no conclusions can be drawn. Servers should try    to maintain a one-to-one correspondence between file handles and    files, but this is not required. Clients should use file handle    comparisons only to improve performance, not for correct    behavior. 
  454.  
  455.    Servers can revoke the access provided by a file handle at any    time.  If the file handle passed in a call refers to a file    system object that no longer exists on the server or access for    that file handle has been revoked, the error, NFS3ERR_STALE,    should be returned. 
  456.  
  457.    nfstime3 
  458.  
  459.       struct nfstime3 {          uint32   seconds;          uint32   nseconds;       }; 
  460.  
  461.    The nfstime3 structure gives the number of seconds and    nanoseconds since midnight January 1, 1970 Greenwich Mean Time.    It is used to pass time and date information. The times    associated with files are all server times except in the case of    a SETATTR operation where the client can explicitly set the file    time. A server converts to and from local time when processing    time values, preserving as much accuracy as possible. If the    precision of timestamps stored for a file is less than that 
  462.  
  463.  
  464.  
  465. Callaghan, el al             Informational                     [Page 21] 
  466.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  467.  
  468.     defined by NFS version 3 protocol, loss of precision can occur.    An adjunct time maintenance protocol is recommended to reduce    client and server time skew. 
  469.  
  470.    fattr3 
  471.  
  472.       struct fattr3 {          ftype3     type;          mode3      mode;          uint32     nlink;          uid3       uid;          gid3       gid;          size3      size;          size3      used;          specdata3  rdev;          uint64     fsid;          fileid3    fileid;          nfstime3   atime;          nfstime3   mtime;          nfstime3   ctime;       }; 
  473.  
  474.    This structure defines the attributes of a file system object.    It is returned by most operations on an object; in the case of    operations that affect two objects (for example, a MKDIR that    modifies the target directory attributes and defines new    attributes for the newly created directory), the attributes for    both may be returned. In some cases, the attributes are returned    in the structure, wcc_data, which is defined below; in other    cases the attributes are returned alone.  The main changes from    the NFS version 2 protocol are that many of the fields have been    widened and the major/minor device information is now presented    in a distinct structure rather than being packed into a word. 
  475.  
  476.    The fattr3 structure contains the basic attributes of a file.    All servers should support this set of attributes even if they    have to simulate some of the fields. Type is the type of the    file. Mode is the protection mode bits. Nlink is the number of    hard links to the file - that is, the number of different names    for the same file. Uid is the user ID of the owner of the file.    Gid is the group ID of the group of the file. Size is the size    of the file in bytes. Used is the number of bytes of disk space    that the file actually uses (which can be smaller than the size    because the file may have holes or it may be larger due to    fragmentation). Rdev describes the device file if the file type    is NF3CHR or NF3BLK - see specdata3 on page 20. Fsid is the file    system identifier for the file system. Fileid is a number which    uniquely identifies the file within its file system (on UNIX  
  477.  
  478.  Callaghan, el al             Informational                     [Page 22] 
  479.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  480.  
  481.     this would be the inumber). Atime is the time when the file data    was last accessed. Mtime is the time when the file data was last    modified.  Ctime is the time when the attributes of the file    were last changed.  Writing to the file changes the ctime in    addition to the mtime. 
  482.  
  483.    The mode bits are defined as follows: 
  484.  
  485.       0x00800 Set user ID on execution.       0x00400 Set group ID on execution.       0x00200 Save swapped text (not defined in POSIX).       0x00100 Read permission for owner.       0x00080 Write permission for owner.       0x00040 Execute permission for owner on a file. Or lookup               (search) permission for owner in directory.       0x00020 Read permission for group.       0x00010 Write permission for group.       0x00008 Execute permission for group on a file. Or lookup               (search) permission for group in directory.       0x00004 Read permission for others.       0x00002 Write permission for others.       0x00001 Execute permission for others on a file. Or lookup               (search) permission for others in directory. 
  486.  
  487.    post_op_attr 
  488.  
  489.       union post_op_attr switch (bool attributes_follow) {       case TRUE:          fattr3   attributes;       case FALSE:          void;       }; 
  490.  
  491.    This structure is used for returning attributes in those    operations that are not directly involved with manipulating    attributes. One of the principles of this revision of the NFS    protocol is to return the real value from the indicated    operation and not an error from an incidental operation. The    post_op_attr structure was designed to allow the server to    recover from errors encountered while getting attributes. 
  492.  
  493.    This appears to make returning attributes optional. However,    server implementors are strongly encouraged to make best effort    to return attributes whenever possible, even when returning an    error. 
  494.  
  495.  
  496.  
  497.  
  498.  
  499.  Callaghan, el al             Informational                     [Page 23] 
  500.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  501.  
  502.     wcc_attr 
  503.  
  504.       struct wcc_attr {          size3       size;          nfstime3    mtime;          nfstime3    ctime;       }; 
  505.  
  506.    This is the subset of pre-operation attributes needed to better    support the weak cache consistency semantics. Size is the file    size in bytes of the object before the operation. Mtime is the    time of last modification of the object before the operation.    Ctime is the time of last change to the attributes of the object    before the operation. See discussion in wcc_attr on page 24. 
  507.  
  508.    The use of mtime by clients to detect changes to file system    objects residing on a server is dependent on the granularity of    the time base on the server. 
  509.  
  510.    pre_op_attr 
  511.  
  512.       union pre_op_attr switch (bool attributes_follow) {       case TRUE:            wcc_attr  attributes;       case FALSE:            void;       }; 
  513.  
  514.    wcc_data 
  515.  
  516.       struct wcc_data {          pre_op_attr    before;          post_op_attr   after;       }; 
  517.  
  518.    When a client performs an operation that modifies the state of a    file or directory on the server, it cannot immediately determine    from the post-operation attributes whether the operation just    performed was the only operation on the object since the last    time the client received the attributes for the object. This is    important, since if an intervening operation has changed the    object, the client will need to invalidate any cached data for    the object (except for the data that it just wrote). 
  519.  
  520.    To deal with this, the notion of weak cache consistency data or    wcc_data is introduced. A wcc_data structure consists of certain    key fields from the object attributes before the operation,    together with the object attributes after the operation. This 
  521.  
  522.  
  523.  
  524. Callaghan, el al             Informational                     [Page 24] 
  525.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  526.  
  527.     information allows the client to manage its cache more    accurately than in NFS version 2 protocol implementations. The    term, weak cache consistency, emphasizes the fact that this    mechanism does not provide the strict server-client consistency    that a cache consistency protocol would provide. 
  528.  
  529.    In order to support the weak cache consistency model, the server    will need to be able to get the pre-operation attributes of the    object, perform the intended modify operation, and then get the    post-operation attributes atomically. If there is a window for    the object to get modified between the operation and either of    the get attributes operations, then the client will not be able    to determine whether it was the only entity to modify the    object. Some information will have been lost, thus weakening the    weak cache consistency guarantees. 
  530.  
  531.    post_op_fh3 
  532.  
  533.       union post_op_fh3 switch (bool handle_follows) {       case TRUE:            nfs_fh3  handle;       case FALSE:            void;       }; 
  534.  
  535.    One of the principles of this revision of the NFS protocol is to    return the real value from the indicated operation and not an    error from an incidental operation. The post_op_fh3 structure    was designed to allow the server to recover from errors    encountered while constructing a file handle. 
  536.  
  537.    This is the structure used to return a file handle from the    CREATE, MKDIR, SYMLINK, MKNOD, and READDIRPLUS requests. In each    case, the client can get the file handle by issuing a LOOKUP    request after a successful return from one of the listed    operations. Returning the file handle is an optimization so that    the client is not forced to immediately issue a LOOKUP request    to get the file handle. 
  538.  
  539.    sattr3 
  540.  
  541.       enum time_how {          DONT_CHANGE        = 0,          SET_TO_SERVER_TIME = 1,          SET_TO_CLIENT_TIME = 2       }; 
  542.  
  543.       union set_mode3 switch (bool set_it) { 
  544.  
  545.  
  546.  
  547. Callaghan, el al             Informational                     [Page 25] 
  548.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  549.  
  550.        case TRUE:          mode3    mode;       default:          void;       }; 
  551.  
  552.       union set_uid3 switch (bool set_it) {       case TRUE:          uid3     uid;       default:          void;       }; 
  553.  
  554.       union set_gid3 switch (bool set_it) {       case TRUE:          gid3     gid;       default:          void;       }; 
  555.  
  556.       union set_size3 switch (bool set_it) {       case TRUE:          size3    size;       default:          void;       }; 
  557.  
  558.       union set_atime switch (time_how set_it) {       case SET_TO_CLIENT_TIME:          nfstime3  atime;       default:          void;       }; 
  559.  
  560.       union set_mtime switch (time_how set_it) {       case SET_TO_CLIENT_TIME:          nfstime3  mtime;       default:          void;       }; 
  561.  
  562.       struct sattr3 {          set_mode3   mode;          set_uid3    uid;          set_gid3    gid;          set_size3   size;          set_atime   atime;          set_mtime   mtime; 
  563.  
  564.  
  565.  
  566. Callaghan, el al             Informational                     [Page 26] 
  567.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  568.  
  569.        }; 
  570.  
  571.    The sattr3 structure contains the file attributes that can be    set from the client. The fields are the same as the similarly    named fields in the fattr3 structure. In the NFS version 3    protocol, the settable attributes are described by a structure    containing a set of discriminated unions. Each union indicates    whether the corresponding attribute is to be updated, and if so,    how. 
  572.  
  573.    There are two forms of discriminated unions used. In setting the    mode, uid, gid, or size, the discriminated union is switched on    a boolean, set_it; if it is TRUE, a value of the appropriate    type is then encoded. 
  574.  
  575.    In setting the atime or mtime, the union is switched on an    enumeration type, set_it. If set_it has the value DONT_CHANGE,    the corresponding attribute is unchanged. If it has the value,    SET_TO_SERVER_TIME, the corresponding attribute is set by the    server to its local time; no data is provided by the client.    Finally, if set_it has the value, SET_TO_CLIENT_TIME, the    attribute is set to the time passed by the client in an nfstime3    structure. (See FSINFO on page 86, which addresses the issue of    time granularity). 
  576.  
  577.    diropargs3 
  578.  
  579.       struct diropargs3 {          nfs_fh3     dir;          filename3   name;       }; 
  580.  
  581.    The diropargs3 structure is used in directory operations. The    file handle, dir, identifies the directory in which to    manipulate or access the file, name. See additional comments in    File name component handling on page 101. 
  582.  
  583. 3. Server Procedures 
  584.  
  585.    The following sections define the RPC procedures that are    supplied by an NFS version 3 protocol server. The RPC    procedure number is given at the top of the page with the    name. The SYNOPSIS provides the name of the procedure, the    list of the names of the arguments, the list of the names of    the results, followed by the XDR argument declarations and    results declarations. The information in the SYNOPSIS is    specified in RPC Data Description Language as defined in    [RFC1014]. The DESCRIPTION section tells what the procedure 
  586.  
  587.  
  588.  
  589. Callaghan, el al             Informational                     [Page 27] 
  590.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  591.  
  592.     is expected to do and how its arguments and results are used.    The ERRORS section lists the errors returned for specific    types of failures. These lists are not intended to be the    definitive statement of all of the errors which can be    returned by any specific procedure, but as a guide for the    more common errors which may be returned.  Client    implementations should be prepared to deal with unexpected    errors coming from a server. The IMPLEMENTATION field gives    information about how the procedure is expected to work and    how it should be used by clients. 
  593.  
  594.       program NFS_PROGRAM {          version NFS_V3 { 
  595.  
  596.             void              NFSPROC3_NULL(void)                    = 0; 
  597.  
  598.             GETATTR3res              NFSPROC3_GETATTR(GETATTR3args)         = 1; 
  599.  
  600.             SETATTR3res              NFSPROC3_SETATTR(SETATTR3args)         = 2; 
  601.  
  602.             LOOKUP3res              NFSPROC3_LOOKUP(LOOKUP3args)           = 3; 
  603.  
  604.             ACCESS3res              NFSPROC3_ACCESS(ACCESS3args)           = 4; 
  605.  
  606.             READLINK3res              NFSPROC3_READLINK(READLINK3args)       = 5; 
  607.  
  608.             READ3res              NFSPROC3_READ(READ3args)               = 6; 
  609.  
  610.             WRITE3res              NFSPROC3_WRITE(WRITE3args)             = 7; 
  611.  
  612.             CREATE3res              NFSPROC3_CREATE(CREATE3args)           = 8; 
  613.  
  614.             MKDIR3res              NFSPROC3_MKDIR(MKDIR3args)             = 9; 
  615.  
  616.             SYMLINK3res              NFSPROC3_SYMLINK(SYMLINK3args)         = 10; 
  617.  
  618.  
  619.  
  620.  
  621.  
  622. Callaghan, el al             Informational                     [Page 28] 
  623.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  624.  
  625.              MKNOD3res              NFSPROC3_MKNOD(MKNOD3args)             = 11; 
  626.  
  627.             REMOVE3res              NFSPROC3_REMOVE(REMOVE3args)           = 12; 
  628.  
  629.             RMDIR3res              NFSPROC3_RMDIR(RMDIR3args)             = 13; 
  630.  
  631.             RENAME3res              NFSPROC3_RENAME(RENAME3args)           = 14; 
  632.  
  633.             LINK3res              NFSPROC3_LINK(LINK3args)               = 15; 
  634.  
  635.             READDIR3res              NFSPROC3_READDIR(READDIR3args)         = 16; 
  636.  
  637.             READDIRPLUS3res              NFSPROC3_READDIRPLUS(READDIRPLUS3args) = 17; 
  638.  
  639.             FSSTAT3res              NFSPROC3_FSSTAT(FSSTAT3args)           = 18; 
  640.  
  641.             FSINFO3res              NFSPROC3_FSINFO(FSINFO3args)           = 19; 
  642.  
  643.             PATHCONF3res              NFSPROC3_PATHCONF(PATHCONF3args)       = 20; 
  644.  
  645.             COMMIT3res              NFSPROC3_COMMIT(COMMIT3args)           = 21; 
  646.  
  647.          } = 3;       } = 100003; 
  648.  
  649.    Out of range (undefined) procedure numbers result in RPC    errors.  Refer to [RFC1057] for more detail. 
  650.  
  651. 3.1 General comments on attributes and consistency data on failure 
  652.  
  653.    For those procedures that return either post_op_attr or wcc_data    structures on failure, the discriminated union may contain the    pre-operation attributes of the object or object parent    directory.  This depends on the error encountered and may also    depend on the particular server implementation. Implementors are    strongly encouraged to return as much attribute data as possible    upon failure, but client implementors need to be aware that 
  654.  
  655.  
  656.  
  657. Callaghan, el al             Informational                     [Page 29] 
  658.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  659.  
  660.     their implementation must correctly handle the variant return    instance where no attributes or consistency data is returned. 
  661.  
  662. 3.2 General comments on filenames 
  663.  
  664.    The following comments apply to all NFS version 3 protocol    procedures in which the client provides one or more filenames in    the arguments: LOOKUP, CREATE, MKDIR, SYMLINK, MKNOD, REMOVE,    RMDIR, RENAME, and LINK. 
  665.  
  666.    1. The filename must not be null nor may it be the null       string.  The server should return the error, NFS3ERR_ACCES, if       it receives such a filename. On some clients, the filename, ``''       or a null string, is assumed to be an alias for the current       directory. Clients which require this functionality should       implement it for themselves and not depend upon the server to       support such semantics. 
  667.  
  668.    2. A filename having the value of "." is assumed to be an       alias for the current directory. Clients which require this       functionality should implement it for themselves and not depend       upon the server to support such semantics. However, the server       should be able to handle such a filename correctly. 
  669.  
  670.    3. A filename having the value of ".." is assumed to be an       alias for the parent of the current directory, i.e. the       directory which contains the current directory. The server       should be prepared to handle this semantic, if it supports       directories, even if those directories do not contain UNIX-style       "." or ".." entries. 
  671.  
  672.    4. If the filename is longer than the maximum for the file       system (see PATHCONF on page 90, specifically name_max), the       result depends on the value of the PATHCONF flag, no_trunc. If       no_trunc is FALSE, the filename will be silently truncated to       name_max bytes. If no_trunc is TRUE and the filename exceeds the       server's file system maximum filename length, the operation will       fail with the error, NFS3ERR_NAMETOOLONG. 
  673.  
  674.    5. In general, there will be characters that a server will       not be able to handle as part of a filename. This set of       characters will vary from server to server and from       implementation to implementation.  In most cases, it is the       server which will control the client's view of the file system.       If the server receives a filename containing characters that it       can not handle, the error, NFS3ERR_EACCES, should be returned.       Client implementations should be prepared to handle this side       affect of heterogeneity. 
  675.  
  676.  
  677.  
  678. Callaghan, el al             Informational                     [Page 30] 
  679.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  680.  
  681.     See also comments in File name component handling on page 101. 
  682.  
  683. 3.3.0 Procedure 0: NULL - Do nothing 
  684.  
  685.    SYNOPSIS 
  686.  
  687.       void NFSPROC3_NULL(void) = 0; 
  688.  
  689.    DESCRIPTION 
  690.  
  691.       Procedure NULL does not do any work. It is made available to       allow server response testing and timing. 
  692.  
  693.    IMPLEMENTATION 
  694.  
  695.       It is important that this procedure do no work at all so       that it can be used to measure the overhead of processing       a service request. By convention, the NULL procedure       should never require any authentication. A server may       choose to ignore this convention, in a more secure       implementation, where responding to the NULL procedure       call acknowledges the existence of a resource to an       unauthenticated client. 
  696.  
  697.    ERRORS 
  698.  
  699.       Since the NULL procedure takes no NFS version 3 protocol       arguments and returns no NFS version 3 protocol response,       it can not return an NFS version 3 protocol error.       However, it is possible that some server implementations       may return RPC errors based on security and authentication       requirements. 
  700.  
  701.  
  702.  
  703.  
  704.  
  705.  
  706.  
  707.  
  708.  
  709.  
  710.  
  711.  
  712.  
  713.  
  714.  
  715.  
  716.  
  717.  
  718.  
  719. Callaghan, el al             Informational                     [Page 31] 
  720.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  721.  
  722.  3.3.1 Procedure 1: GETATTR - Get file attributes 
  723.  
  724.    SYNOPSIS 
  725.  
  726.       GETATTR3res NFSPROC3_GETATTR(GETATTR3args) = 1; 
  727.  
  728.       struct GETATTR3args {          nfs_fh3  object;       }; 
  729.  
  730.       struct GETATTR3resok {          fattr3   obj_attributes;       }; 
  731.  
  732.       union GETATTR3res switch (nfsstat3 status) {       case NFS3_OK:          GETATTR3resok  resok;       default:          void;       }; 
  733.  
  734.    DESCRIPTION 
  735.  
  736.       Procedure GETATTR retrieves the attributes for a specified       file system object. The object is identified by the file       handle that the server returned as part of the response       from a LOOKUP, CREATE, MKDIR, SYMLINK, MKNOD, or       READDIRPLUS procedure (or from the MOUNT service,       described elsewhere). On entry, the arguments in       GETATTR3args are: 
  737.  
  738.       object          The file handle of an object whose attributes are to be          retrieved. 
  739.  
  740.       On successful return, GETATTR3res.status is NFS3_OK and       GETATTR3res.resok contains: 
  741.  
  742.       obj_attributes          The attributes for the object. 
  743.  
  744.       Otherwise, GETATTR3res.status contains the error on failure and       no other results are returned. 
  745.  
  746.    IMPLEMENTATION 
  747.  
  748.       The attributes of file system objects is a point of major       disagreement between different operating systems. Servers 
  749.  
  750.  
  751.  
  752. Callaghan, el al             Informational                     [Page 32] 
  753.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  754.  
  755.        should make a best attempt to support all of the       attributes in the fattr3 structure so that clients can       count on this as a common ground. Some mapping may be       required to map local attributes to those in the fattr3       structure. 
  756.  
  757.       Today, most client NFS version 3 protocol implementations       implement a time-bounded attribute caching scheme to       reduce over-the-wire attribute checks. 
  758.  
  759.    ERRORS 
  760.  
  761.       NFS3ERR_IO       NFS3ERR_STALE       NFS3ERR_BADHANDLE       NFS3ERR_SERVERFAULT 
  762.  
  763.    SEE ALSO 
  764.  
  765.       ACCESS. 
  766.  
  767. 3.3.2 Procedure 2: SETATTR - Set file attributes 
  768.  
  769.    SYNOPSIS 
  770.  
  771.       SETATTR3res NFSPROC3_SETATTR(SETATTR3args) = 2; 
  772.  
  773.       union sattrguard3 switch (bool check) {       case TRUE:          nfstime3  obj_ctime;       case FALSE:          void;       }; 
  774.  
  775.       struct SETATTR3args {          nfs_fh3      object;          sattr3       new_attributes;          sattrguard3  guard;       }; 
  776.  
  777.       struct SETATTR3resok {          wcc_data  obj_wcc;       }; 
  778.  
  779.       struct SETATTR3resfail {          wcc_data  obj_wcc;       }; 
  780.  
  781.  
  782.  
  783.  Callaghan, el al             Informational                     [Page 33] 
  784.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  785.  
  786.        union SETATTR3res switch (nfsstat3 status) {       case NFS3_OK:          SETATTR3resok   resok;       default:          SETATTR3resfail resfail;       }; 
  787.  
  788.    DESCRIPTION 
  789.  
  790.       Procedure SETATTR changes one or more of the attributes of       a file system object on the server. The new attributes are       specified by a sattr3 structure. On entry, the arguments       in SETATTR3args are: 
  791.  
  792.       object          The file handle for the object. 
  793.  
  794.       new_attributes          A sattr3 structure containing booleans and          enumerations describing the attributes to be set and the new          values for those attributes. 
  795.  
  796.       guard          A sattrguard3 union: 
  797.  
  798.          check             TRUE if the server is to verify that guard.obj_ctime             matches the ctime for the object; FALSE otherwise. 
  799.  
  800.       A client may request that the server check that the object       is in an expected state before performing the SETATTR       operation. To do this, it sets the argument guard.check to       TRUE and the client passes a time value in guard.obj_ctime.       If guard.check is TRUE, the server must compare the value of       guard.obj_ctime to the current ctime of the object. If the       values are different, the server must preserve the object       attributes and must return a status of NFS3ERR_NOT_SYNC.       If guard.check is FALSE, the server will not perform this       check. 
  801.  
  802.       On successful return, SETATTR3res.status is NFS3_OK and       SETATTR3res.resok contains: 
  803.  
  804.          obj_wcc             A wcc_data structure containing the old and new             attributes for the object. 
  805.  
  806.  
  807.  
  808.  
  809.  
  810. Callaghan, el al             Informational                     [Page 34] 
  811.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  812.  
  813.        Otherwise, SETATTR3res.status contains the error on       failure and SETATTR3res.resfail contains the following: 
  814.  
  815.          obj_wcc             A wcc_data structure containing the old and new             attributes for the object. 
  816.  
  817.    IMPLEMENTATION 
  818.  
  819.       The guard.check mechanism allows the client to avoid       changing the attributes of an object on the basis of stale       attributes. It does not guarantee exactly-once semantics.       In particular, if a reply is lost and the server does not       detect the retransmission of the request, the procedure       can fail with the error, NFS3ERR_NOT_SYNC, even though the       attribute setting was previously performed successfully.       The client can attempt to recover from this error by       getting fresh attributes from the server and sending a new       SETATTR request using the new ctime.  The client can       optionally check the attributes to avoid the second       SETATTR request if the new attributes show that the       attributes have already been set as desired (though it may       not have been the issuing client that set the       attributes). 
  820.  
  821.       The new_attributes.size field is used to request changes       to the size of a file. A value of 0 causes the file to be       truncated, a value less than the current size of the file       causes data from new size to the end of the file to be       discarded, and a size greater than the current size of the       file causes logically zeroed data bytes to be added to the       end of the file.  Servers are free to implement this using       holes or actual zero data bytes. Clients should not make       any assumptions regarding a server's implementation of       this feature, beyond that the bytes returned will be       zeroed. Servers must support extending the file size via       SETATTR. 
  822.  
  823.       SETATTR is not guaranteed atomic. A failed SETATTR may       partially change a file's attributes. 
  824.  
  825.       Changing the size of a file with SETATTR indirectly       changes the mtime. A client must account for this as size       changes can result in data deletion. 
  826.  
  827.       If server and client times differ, programs that compare       client time to file times can break. A time maintenance       protocol should be used to limit client/server time skew. 
  828.  
  829.  
  830.  
  831. Callaghan, el al             Informational                     [Page 35] 
  832.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  833.  
  834.        In a heterogeneous environment, it is quite possible that       the server will not be able to support the full range of       SETATTR requests. The error, NFS3ERR_INVAL, may be       returned if the server can not store a uid or gid in its       own representation of uids or gids, respectively.  If the       server can only support 32 bit offsets and sizes, a       SETATTR request to set the size of a file to larger than       can be represented in 32 bits will be rejected with this       same error. 
  835.  
  836.    ERRORS 
  837.  
  838.       NFS3ERR_PERM       NFS3ERR_IO       NFS3ERR_ACCES       NFS3ERR_INVAL       NFS3ERR_NOSPC       NFS3ERR_ROFS       NFS3ERR_DQUOT       NFS3ERR_NOT_SYNC       NFS3ERR_STALE       NFS3ERR_BADHANDLE       NFS3ERR_SERVERFAULT 
  839.  
  840.    SEE ALSO 
  841.  
  842.       CREATE, MKDIR, SYMLINK, and MKNOD. 
  843.  
  844.  
  845.  
  846.  
  847.  
  848.  
  849.  
  850.  
  851.  
  852.  
  853.  
  854.  
  855.  
  856.  
  857.  
  858.  
  859.  
  860.  
  861.  
  862.  
  863.  
  864.  
  865.  
  866.  Callaghan, el al             Informational                     [Page 36] 
  867.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  868.  
  869.  3.3.3 Procedure 3: LOOKUP -  Lookup filename 
  870.  
  871.    SYNOPSIS 
  872.  
  873.       LOOKUP3res NFSPROC3_LOOKUP(LOOKUP3args) = 3; 
  874.  
  875.       struct LOOKUP3args {            diropargs3  what;       }; 
  876.  
  877.       struct LOOKUP3resok {            nfs_fh3      object;            post_op_attr obj_attributes;            post_op_attr dir_attributes;       }; 
  878.  
  879.       struct LOOKUP3resfail {            post_op_attr dir_attributes;       }; 
  880.  
  881.       union LOOKUP3res switch (nfsstat3 status) {       case NFS3_OK:            LOOKUP3resok    resok;       default:            LOOKUP3resfail  resfail;       }; 
  882.  
  883.    DESCRIPTION 
  884.  
  885.       Procedure LOOKUP searches a directory for a specific name       and returns the file handle for the corresponding file       system object. On entry, the arguments in LOOKUP3args       are: 
  886.  
  887.       what          Object to look up: 
  888.  
  889.          dir             The file handle for the directory to search. 
  890.  
  891.          name             The filename to be searched for. Refer to General             comments on filenames on page 30. 
  892.  
  893.       On successful return, LOOKUP3res.status is NFS3_OK and       LOOKUP3res.resok contains: 
  894.  
  895.  
  896.  
  897.  
  898.  
  899. Callaghan, el al             Informational                     [Page 37] 
  900.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  901.  
  902.        object          The file handle of the object corresponding to          what.name. 
  903.  
  904.       obj_attributes          The attributes of the object corresponding to          what.name. 
  905.  
  906.       dir_attributes          The post-operation attributes of the directory,          what.dir. 
  907.  
  908.       Otherwise, LOOKUP3res.status contains the error on failure and       LOOKUP3res.resfail contains the following: 
  909.  
  910.       dir_attributes          The post-operation attributes for the directory,          what.dir. 
  911.  
  912.    IMPLEMENTATION 
  913.  
  914.       At first glance, in the case where what.name refers to a       mount point on the server, two different replies seem       possible. The server can return either the file handle for       the underlying directory that is mounted on or the file       handle of the root of the mounted directory.  This       ambiguity is simply resolved. A server will not allow a       LOOKUP operation to cross a mountpoint to the root of a       different filesystem, even if the filesystem is exported.       This does not prevent a client from accessing a hierarchy       of filesystems exported by a server, but the client must       mount each of the filesystems individually so that the       mountpoint crossing takes place on the client.  A given       server implementation may refine these rules given       capabilities or limitations particular to that       implementation. Refer to [X/OpenNFS] for a discussion on       exporting file systems. 
  915.  
  916.       Two filenames are distinguished, as in the NFS version 2       protocol.  The name, ".", is an alias for the current       directory and the name, "..", is an alias for the parent       directory; that is, the directory that includes the       specified directory as a member. There is no facility for       dealing with a multiparented directory and the NFS       protocol assumes a hierarchical organization, organized as       a single-rooted tree. 
  917.  
  918.  
  919.  
  920.  
  921.  
  922. Callaghan, el al             Informational                     [Page 38] 
  923.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  924.  
  925.        Note that this procedure does not follow symbolic links.       The client is responsible for all parsing of filenames       including filenames that are modified by symbolic links       encountered during the lookup process. 
  926.  
  927.    ERRORS 
  928.  
  929.       NFS3ERR_IO       NFS3ERR_NOENT       NFS3ERR_ACCES       NFS3ERR_NOTDIR       NFS3ERR_NAMETOOLONG       NFS3ERR_STALE       NFS3ERR_BADHANDLE       NFS3ERR_SERVERFAULT 
  930.  
  931.    SEE ALSO 
  932.  
  933.       CREATE, MKDIR, SYMLINK, MKNOD, READDIRPLUS, and PATHCONF. 
  934.  
  935.  
  936.  
  937.  
  938.  
  939.  
  940.  
  941.  
  942.  
  943.  
  944.  
  945.  
  946.  
  947.  
  948.  
  949.  
  950.  
  951.  
  952.  
  953.  
  954.  
  955.  
  956.  
  957.  
  958.  
  959.  
  960.  
  961.  
  962.  
  963.  
  964.  
  965.  Callaghan, el al             Informational                     [Page 39] 
  966.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  967.  
  968.  3.3.4 Procedure 4: ACCESS - Check Access Permission 
  969.  
  970.    SYNOPSIS 
  971.  
  972.       ACCESS3res NFSPROC3_ACCESS(ACCESS3args) = 4; 
  973.  
  974.       const ACCESS3_READ    = 0x0001;       const ACCESS3_LOOKUP  = 0x0002;       const ACCESS3_MODIFY  = 0x0004;       const ACCESS3_EXTEND  = 0x0008;       const ACCESS3_DELETE  = 0x0010;       const ACCESS3_EXECUTE = 0x0020; 
  975.  
  976.       struct ACCESS3args {            nfs_fh3  object;            uint32   access;       }; 
  977.  
  978.       struct ACCESS3resok {            post_op_attr   obj_attributes;            uint32         access;       }; 
  979.  
  980.       struct ACCESS3resfail {            post_op_attr   obj_attributes;       }; 
  981.  
  982.       union ACCESS3res switch (nfsstat3 status) {       case NFS3_OK:            ACCESS3resok   resok;       default:            ACCESS3resfail resfail;       }; 
  983.  
  984.    DESCRIPTION 
  985.  
  986.       Procedure ACCESS determines the access rights that a user,       as identified by the credentials in the request, has with       respect to a file system object. The client encodes the       set of permissions that are to be checked in a bit mask.       The server checks the permissions encoded in the bit mask.       A status of NFS3_OK is returned along with a bit mask       encoded with the permissions that the client is allowed. 
  987.  
  988.       The results of this procedure are necessarily advisory in       nature.  That is, a return status of NFS3_OK and the       appropriate bit set in the bit mask does not imply that       such access will be allowed to the file system object in 
  989.  
  990.  
  991.  
  992. Callaghan, el al             Informational                     [Page 40] 
  993.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  994.  
  995.        the future, as access rights can be revoked by the server       at any time. 
  996.  
  997.       On entry, the arguments in ACCESS3args are: 
  998.  
  999.       object          The file handle for the file system object to which          access is to be checked. 
  1000.  
  1001.       access          A bit mask of access permissions to check. 
  1002.  
  1003.       The following access permissions may be requested: 
  1004.  
  1005.          ACCESS3_READ             Read data from file or read a directory. 
  1006.  
  1007.          ACCESS3_LOOKUP             Look up a name in a directory (no meaning for             non-directory objects). 
  1008.  
  1009.          ACCESS3_MODIFY             Rewrite existing file data or modify existing             directory entries. 
  1010.  
  1011.          ACCESS3_EXTEND             Write new data or add directory entries. 
  1012.  
  1013.          ACCESS3_DELETE             Delete an existing directory entry. 
  1014.  
  1015.          ACCESS3_EXECUTE             Execute file (no meaning for a directory). 
  1016.  
  1017.       On successful return, ACCESS3res.status is NFS3_OK. The       server should return a status of NFS3_OK if no errors       occurred that prevented the server from making the       required access checks. The results in ACCESS3res.resok       are: 
  1018.  
  1019.       obj_attributes          The post-operation attributes of object. 
  1020.  
  1021.       access          A bit mask of access permissions indicating access          rights for the authentication credentials provided with          the request. 
  1022.  
  1023.  
  1024.  
  1025.  Callaghan, el al             Informational                     [Page 41] 
  1026.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  1027.  
  1028.        Otherwise, ACCESS3res.status contains the error on failure       and ACCESS3res.resfail contains the following: 
  1029.  
  1030.       obj_attributes          The attributes of object - if access to attributes is          permitted. 
  1031.  
  1032.    IMPLEMENTATION 
  1033.  
  1034.       In general, it is not sufficient for the client to attempt       to deduce access permissions by inspecting the uid, gid,       and mode fields in the file attributes, since the server       may perform uid or gid mapping or enforce additional       access control restrictions. It is also possible that the       NFS version 3 protocol server may not be in the same ID       space as the NFS version 3 protocol client. In these cases       (and perhaps others), the NFS version 3 protocol client       can not reliably perform an access check with only current       file attributes. 
  1035.  
  1036.       In the NFS version 2 protocol, the only reliable way to       determine whether an operation was allowed was to try it       and see if it succeeded or failed. Using the ACCESS       procedure in the NFS version 3 protocol, the client can       ask the server to indicate whether or not one or more       classes of operations are permitted.  The ACCESS operation       is provided to allow clients to check before doing a       series of operations. This is useful in operating systems       (such as UNIX) where permission checking is done only when       a file or directory is opened. This procedure is also       invoked by NFS client access procedure (called possibly       through access(2)). The intent is to make the behavior of       opening a remote file more consistent with the behavior of       opening a local file. 
  1037.  
  1038.       The information returned by the server in response to an       ACCESS call is not permanent. It was correct at the exact       time that the server performed the checks, but not       necessarily afterwards. The server can revoke access       permission at any time. 
  1039.  
  1040.       The NFS version 3 protocol client should use the effective       credentials of the user to build the authentication       information in the ACCESS request used to determine access       rights. It is the effective user and group credentials       that are used in subsequent read and write operations. See       the comments in Permission issues on page 98 for more       information on this topic. 
  1041.  
  1042.  
  1043.  
  1044. Callaghan, el al             Informational                     [Page 42] 
  1045.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  1046.  
  1047.        Many implementations do not directly support the       ACCESS3_DELETE permission. Operating systems like UNIX       will ignore the ACCESS3_DELETE bit if set on an access       request on a non-directory object. In these systems,       delete permission on a file is determined by the access       permissions on the directory in which the file resides,       instead of being determined by the permissions of the file       itself.  Thus, the bit mask returned for such a request       will have the ACCESS3_DELETE bit set to 0, indicating that       the client does not have this permission. 
  1048.  
  1049.    ERRORS 
  1050.  
  1051.       NFS3ERR_IO       NFS3ERR_STALE       NFS3ERR_BADHANDLE       NFS3ERR_SERVERFAULT 
  1052.  
  1053.    SEE ALSO 
  1054.  
  1055.       GETATTR. 
  1056.  
  1057.  
  1058.  
  1059.  
  1060.  
  1061.  
  1062.  
  1063.  
  1064.  
  1065.  
  1066.  
  1067.  
  1068.  
  1069.  
  1070.  
  1071.  
  1072.  
  1073.  
  1074.  
  1075.  
  1076.  
  1077.  
  1078.  
  1079.  
  1080.  
  1081.  
  1082.  
  1083.  
  1084.  
  1085.  Callaghan, el al             Informational                     [Page 43] 
  1086.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  1087.  
  1088.  3.3.5 Procedure 5: READLINK - Read from symbolic link 
  1089.  
  1090.    SYNOPSIS 
  1091.  
  1092.       READLINK3res NFSPROC3_READLINK(READLINK3args) = 5; 
  1093.  
  1094.       struct READLINK3args {            nfs_fh3  symlink;       }; 
  1095.  
  1096.       struct READLINK3resok {            post_op_attr   symlink_attributes;            nfspath3       data;       }; 
  1097.  
  1098.       struct READLINK3resfail {            post_op_attr   symlink_attributes;       }; 
  1099.  
  1100.       union READLINK3res switch (nfsstat3 status) {       case NFS3_OK:            READLINK3resok   resok;       default:            READLINK3resfail resfail;       }; 
  1101.  
  1102.    DESCRIPTION 
  1103.  
  1104.       Procedure READLINK reads the data associated with a       symbolic link.  The data is an ASCII string that is opaque       to the server.  That is, whether created by the NFS       version 3 protocol software from a client or created       locally on the server, the data in a symbolic link is not       interpreted when created, but is simply stored. On entry,       the arguments in READLINK3args are: 
  1105.  
  1106.       symlink          The file handle for a symbolic link (file system object          of type NF3LNK). 
  1107.  
  1108.       On successful return, READLINK3res.status is NFS3_OK and       READLINK3res.resok contains: 
  1109.  
  1110.       data          The data associated with the symbolic link. 
  1111.  
  1112.       symlink_attributes          The post-operation attributes for the symbolic link. 
  1113.  
  1114.  
  1115.  
  1116. Callaghan, el al             Informational                     [Page 44] 
  1117.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  1118.  
  1119.        Otherwise, READLINK3res.status contains the error on       failure and READLINK3res.resfail contains the following: 
  1120.  
  1121.       symlink_attributes          The post-operation attributes for the symbolic link. 
  1122.  
  1123.    IMPLEMENTATION 
  1124.  
  1125.       A symbolic link is nominally a pointer to another file.       The data is not necessarily interpreted by the server,       just stored in the file.  It is possible for a client       implementation to store a path name that is not meaningful       to the server operating system in a symbolic link.  A       READLINK operation returns the data to the client for       interpretation. If different implementations want to share       access to symbolic links, then they must agree on the       interpretation of the data in the symbolic link. 
  1126.  
  1127.       The READLINK operation is only allowed on objects of type,       NF3LNK.  The server should return the error,       NFS3ERR_INVAL, if the object is not of type, NF3LNK.       (Note: The X/Open XNFS Specification for the NFS version 2       protocol defined the error status in this case as       NFSERR_NXIO. This is inconsistent with existing server       practice.) 
  1128.  
  1129.    ERRORS 
  1130.  
  1131.       NFS3ERR_IO       NFS3ERR_INVAL       NFS3ERR_ACCES       NFS3ERR_STALE       NFS3ERR_BADHANDLE       NFS3ERR_NOTSUPP       NFS3ERR_SERVERFAULT 
  1132.  
  1133.    SEE ALSO 
  1134.  
  1135.       READLINK, SYMLINK. 
  1136.  
  1137.  
  1138.  
  1139.  
  1140.  
  1141.  
  1142.  
  1143.  
  1144.  
  1145.  
  1146.  
  1147.  Callaghan, el al             Informational                     [Page 45] 
  1148.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  1149.  
  1150.  3.3.6 Procedure 6: READ - Read From file 
  1151.  
  1152.    SYNOPSIS 
  1153.  
  1154.       READ3res NFSPROC3_READ(READ3args) = 6; 
  1155.  
  1156.       struct READ3args {            nfs_fh3  file;            offset3  offset;            count3   count;       }; 
  1157.  
  1158.       struct READ3resok {            post_op_attr   file_attributes;            count3         count;            bool           eof;            opaque         data<>;       }; 
  1159.  
  1160.       struct READ3resfail {            post_op_attr   file_attributes;       }; 
  1161.  
  1162.       union READ3res switch (nfsstat3 status) {       case NFS3_OK:            READ3resok   resok;       default:            READ3resfail resfail;       }; 
  1163.  
  1164.    DESCRIPTION 
  1165.  
  1166.       Procedure READ reads data from a file.  On entry, the       arguments in READ3args are: 
  1167.  
  1168.       file          The file handle of the file from which data is to be          read.  This must identify a file system object of type,          NF3REG. 
  1169.  
  1170.       offset          The position within the file at which the read is to          begin.  An offset of 0 means to read data starting at          the beginning of the file. If offset is greater than or          equal to the size of the file, the status, NFS3_OK, is          returned with count set to 0 and eof set to TRUE,          subject to access permissions checking. 
  1171.  
  1172.  
  1173.  
  1174.  Callaghan, el al             Informational                     [Page 46] 
  1175.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  1176.  
  1177.        count          The number of bytes of data that are to be read. If          count is 0, the READ will succeed and return 0 bytes of          data, subject to access permissions checking. count          must be less than or equal to the value of the rtmax          field in the FSINFO reply structure for the file system          that contains file. If greater, the server may return          only rtmax bytes, resulting in a short read. 
  1178.  
  1179.       On successful return, READ3res.status is NFS3_OK and       READ3res.resok contains: 
  1180.  
  1181.       file_attributes          The attributes of the file on completion of the read. 
  1182.  
  1183.       count          The number of bytes of data returned by the read. 
  1184.  
  1185.       eof          If the read ended at the end-of-file (formally, in a          correctly formed READ request, if READ3args.offset plus          READ3resok.count is equal to the size of the file), eof          is returned as TRUE; otherwise it is FALSE. A          successful READ of an empty file will always return eof          as TRUE. 
  1186.  
  1187.       data          The counted data read from the file. 
  1188.  
  1189.       Otherwise, READ3res.status contains the error on failure       and READ3res.resfail contains the following: 
  1190.  
  1191.       file_attributes          The post-operation attributes of the file. 
  1192.  
  1193.    IMPLEMENTATION 
  1194.  
  1195.       The nfsdata type used for the READ and WRITE operations in       the NFS version 2 protocol defining the data portion of a       request or reply has been changed to a variable-length       opaque byte array.  The maximum size allowed by the       protocol is now limited by what XDR and underlying       transports will allow. There are no artificial limits       imposed by the NFS version 3 protocol. Consult the FSINFO       procedure description for details. 
  1196.  
  1197.  
  1198.  
  1199.  
  1200.  
  1201.  Callaghan, el al             Informational                     [Page 47] 
  1202.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  1203.  
  1204.        It is possible for the server to return fewer than count       bytes of data. If the server returns less than the count       requested and eof set to FALSE, the client should issue       another READ to get the remaining data. A server may       return less data than requested under several       circumstances. The file may have been truncated by another       client or perhaps on the server itself, changing the file       size from what the requesting client believes to be the       case. This would reduce the actual amount of data       available to the client. It is possible that the server       may back off the transfer size and reduce the read request       return. Server resource exhaustion may also occur       necessitating a smaller read return. 
  1205.  
  1206.       Some NFS version 2 protocol client implementations chose       to interpret a short read response as indicating EOF. The       addition of the eof flag in the NFS version 3 protocol       provides a correct way of handling EOF. 
  1207.  
  1208.       Some NFS version 2 protocol server implementations       incorrectly returned NFSERR_ISDIR if the file system       object type was not a regular file. The correct return       value for the NFS version 3 protocol is NFS3ERR_INVAL. 
  1209.  
  1210.    ERRORS 
  1211.  
  1212.       NFS3ERR_IO       NFS3ERR_NXIO       NFS3ERR_ACCES       NFS3ERR_INVAL       NFS3ERR_STALE       NFS3ERR_BADHANDLE       NFS3ERR_SERVERFAULT 
  1213.  
  1214.    SEE ALSO 
  1215.  
  1216.       READLINK. 
  1217.  
  1218.  
  1219.  
  1220.  
  1221.  
  1222.  
  1223.  
  1224.  
  1225.  
  1226.  
  1227.  
  1228.  
  1229.  
  1230.  Callaghan, el al             Informational                     [Page 48] 
  1231.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  1232.  
  1233.  3.3.7 Procedure 7: WRITE - Write to file 
  1234.  
  1235.    SYNOPSIS 
  1236.  
  1237.       WRITE3res NFSPROC3_WRITE(WRITE3args) = 7; 
  1238.  
  1239.       enum stable_how {            UNSTABLE  = 0,            DATA_SYNC = 1,            FILE_SYNC = 2       }; 
  1240.  
  1241.       struct WRITE3args {            nfs_fh3     file;            offset3     offset;            count3      count;            stable_how  stable;            opaque      data<>;       }; 
  1242.  
  1243.       struct WRITE3resok {            wcc_data    file_wcc;            count3      count;            stable_how  committed;            writeverf3  verf;       }; 
  1244.  
  1245.       struct WRITE3resfail {            wcc_data    file_wcc;       }; 
  1246.  
  1247.       union WRITE3res switch (nfsstat3 status) {       case NFS3_OK:            WRITE3resok    resok;       default:            WRITE3resfail  resfail;       }; 
  1248.  
  1249.    DESCRIPTION 
  1250.  
  1251.       Procedure WRITE writes data to a file. On entry, the       arguments in WRITE3args are: 
  1252.  
  1253.       file          The file handle for the file to which data is to be          written.  This must identify a file system object of          type, NF3REG. 
  1254.  
  1255.  
  1256.  
  1257.  Callaghan, el al             Informational                     [Page 49] 
  1258.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  1259.  
  1260.        offset          The position within the file at which the write is to          begin.  An offset of 0 means to write data starting at          the beginning of the file. 
  1261.  
  1262.       count          The number of bytes of data to be written. If count is          0, the WRITE will succeed and return a count of 0,          barring errors due to permissions checking. The size of          data must be less than or equal to the value of the          wtmax field in the FSINFO reply structure for the file          system that contains file. If greater, the server may          write only wtmax bytes, resulting in a short write. 
  1263.  
  1264.       stable          If stable is FILE_SYNC, the server must commit the data          written plus all file system metadata to stable storage          before returning results. This corresponds to the NFS          version 2 protocol semantics. Any other behavior          constitutes a protocol violation. If stable is          DATA_SYNC, then the server must commit all of the data          to stable storage and enough of the metadata to          retrieve the data before returning.  The server          implementor is free to implement DATA_SYNC in the same          fashion as FILE_SYNC, but with a possible performance          drop.  If stable is UNSTABLE, the server is free to          commit any part of the data and the metadata to stable          storage, including all or none, before returning a          reply to the client. There is no guarantee whether or          when any uncommitted data will subsequently be          committed to stable storage. The only guarantees made          by the server are that it will not destroy any data          without changing the value of verf and that it will not          commit the data and metadata at a level less than that          requested by the client. See the discussion on COMMIT          on page 92 for more information on if and when          data is committed to stable storage. 
  1265.  
  1266.       data          The data to be written to the file. 
  1267.  
  1268.       On successful return, WRITE3res.status is NFS3_OK and       WRITE3res.resok contains: 
  1269.  
  1270.       file_wcc          Weak cache consistency data for the file. For a client          that requires only the post-write file attributes,          these can be found in file_wcc.after. 
  1271.  
  1272.  
  1273.  
  1274. Callaghan, el al             Informational                     [Page 50] 
  1275.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  1276.  
  1277.        count          The number of bytes of data written to the file. The          server may write fewer bytes than requested. If so, the          actual number of bytes written starting at location,          offset, is returned. 
  1278.  
  1279.       committed          The server should return an indication of the level of          commitment of the data and metadata via committed. If          the server committed all data and metadata to stable          storage, committed should be set to FILE_SYNC. If the          level of commitment was at least as strong as          DATA_SYNC, then committed should be set to DATA_SYNC.          Otherwise, committed must be returned as UNSTABLE. If          stable was FILE_SYNC, then committed must also be          FILE_SYNC: anything else constitutes a protocol          violation. If stable was DATA_SYNC, then committed may          be FILE_SYNC or DATA_SYNC: anything else constitutes a          protocol violation. If stable was UNSTABLE, then          committed may be either FILE_SYNC, DATA_SYNC, or          UNSTABLE. 
  1280.  
  1281.       verf          This is a cookie that the client can use to determine          whether the server has changed state between a call to          WRITE and a subsequent call to either WRITE or COMMIT.          This cookie must be consistent during a single instance          of the NFS version 3 protocol service and must be          unique between instances of the NFS version 3 protocol          server, where uncommitted data may be lost. 
  1282.  
  1283.       Otherwise, WRITE3res.status contains the error on failure       and WRITE3res.resfail contains the following: 
  1284.  
  1285.       file_wcc          Weak cache consistency data for the file. For a client          that requires only the post-write file attributes,          these can be found in file_wcc.after. Even though the          write failed, full wcc_data is returned to allow the          client to determine whether the failed write resulted          in any change to the file. 
  1286.  
  1287.       If a client writes data to the server with the stable       argument set to UNSTABLE and the reply yields a committed       response of DATA_SYNC or UNSTABLE, the client will follow       up some time in the future with a COMMIT operation to       synchronize outstanding asynchronous data and metadata       with the server's stable storage, barring client error. It 
  1288.  
  1289.  
  1290.  
  1291. Callaghan, el al             Informational                     [Page 51] 
  1292.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  1293.  
  1294.        is possible that due to client crash or other error that a       subsequent COMMIT will not be received by the server. 
  1295.  
  1296.    IMPLEMENTATION 
  1297.  
  1298.       The nfsdata type used for the READ and WRITE operations in       the NFS version 2 protocol defining the data portion of a       request or reply has been changed to a variable-length       opaque byte array.  The maximum size allowed by the       protocol is now limited by what XDR and underlying       transports will allow. There are no artificial limits       imposed by the NFS version 3 protocol. Consult the FSINFO       procedure description for details. 
  1299.  
  1300.       It is possible for the server to write fewer than count       bytes of data. In this case, the server should not return       an error unless no data was written at all. If the server       writes less than count bytes, the client should issue       another WRITE to write the remaining data. 
  1301.  
  1302.       It is assumed that the act of writing data to a file will       cause the mtime of the file to be updated. However, the       mtime of the file should not be changed unless the       contents of the file are changed.  Thus, a WRITE request       with count set to 0 should not cause the mtime of the file       to be updated. 
  1303.  
  1304.       The NFS version 3 protocol introduces safe asynchronous       writes.  The combination of WRITE with stable set to       UNSTABLE followed by a COMMIT addresses the performance       bottleneck found in the NFS version 2 protocol, the need       to synchronously commit all writes to stable storage. 
  1305.  
  1306.       The definition of stable storage has been historically a       point of contention. The following expected properties of       stable storage may help in resolving design issues in the       implementation. Stable storage is persistent storage that       survives: 
  1307.  
  1308.       1. Repeated power failures. 
  1309.  
  1310.       2. Hardware failures (of any board, power supply, and so on.). 
  1311.  
  1312.       3. Repeated software crashes, including reboot cycle. 
  1313.  
  1314.       This definition does not address failure of the stable       storage module itself. 
  1315.  
  1316.  
  1317.  
  1318.  Callaghan, el al             Informational                     [Page 52] 
  1319.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  1320.  
  1321.        A cookie, verf, is defined to allow a client to detect       different instances of an NFS version 3 protocol server       over which cached, uncommitted data may be lost. In the       most likely case, the verf allows the client to detect       server reboots. This information is required so that the       client can safely determine whether the server could have       lost cached data. If the server fails unexpectedly and the       client has uncommitted data from previous WRITE requests       (done with the stable argument set to UNSTABLE and in       which the result committed was returned as UNSTABLE as       well) it may not have flushed cached data to stable       storage. The burden of recovery is on the client and the       client will need to retransmit the data to the server. 
  1322.  
  1323.       A suggested verf cookie would be to use the time that the       server was booted or the time the server was last started       (if restarting the server without a reboot results in lost       buffers). 
  1324.  
  1325.       The committed field in the results allows the client to do       more effective caching. If the server is committing all       WRITE requests to stable storage, then it should return       with committed set to FILE_SYNC, regardless of the value       of the stable field in the arguments. A server that uses       an NVRAM accelerator may choose to implement this policy.       The client can use this to increase the effectiveness of       the cache by discarding cached data that has already been       committed on the server. 
  1326.  
  1327.       Some implementations may return NFS3ERR_NOSPC instead of       NFS3ERR_DQUOT when a user's quota is exceeded. 
  1328.  
  1329.       Some NFS version 2 protocol server implementations       incorrectly returned NFSERR_ISDIR if the file system       object type was not a regular file. The correct return       value for the NFS version 3 protocol is NFS3ERR_INVAL. 
  1330.  
  1331.    ERRORS 
  1332.  
  1333.       NFS3ERR_IO       NFS3ERR_ACCES       NFS3ERR_FBIG       NFS3ERR_DQUOT       NFS3ERR_NOSPC       NFS3ERR_ROFS       NFS3ERR_INVAL       NFS3ERR_STALE       NFS3ERR_BADHANDLE 
  1334.  
  1335.  
  1336.  
  1337. Callaghan, el al             Informational                     [Page 53] 
  1338.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  1339.  
  1340.        NFS3ERR_SERVERFAULT 
  1341.  
  1342.    SEE ALSO 
  1343.  
  1344.       COMMIT. 
  1345.  
  1346. 3.3.8 Procedure 8: CREATE - Create a file 
  1347.  
  1348.    SYNOPSIS 
  1349.  
  1350.       CREATE3res NFSPROC3_CREATE(CREATE3args) = 8; 
  1351.  
  1352.       enum createmode3 {            UNCHECKED = 0,            GUARDED   = 1,            EXCLUSIVE = 2       }; 
  1353.  
  1354.       union createhow3 switch (createmode3 mode) {       case UNCHECKED:       case GUARDED:            sattr3       obj_attributes;       case EXCLUSIVE:            createverf3  verf;       }; 
  1355.  
  1356.       struct CREATE3args {            diropargs3   where;            createhow3   how;       }; 
  1357.  
  1358.       struct CREATE3resok {            post_op_fh3   obj;            post_op_attr  obj_attributes;            wcc_data      dir_wcc;       }; 
  1359.  
  1360.       struct CREATE3resfail {            wcc_data      dir_wcc;       }; 
  1361.  
  1362.       union CREATE3res switch (nfsstat3 status) {       case NFS3_OK:            CREATE3resok    resok;       default:            CREATE3resfail  resfail;       }; 
  1363.  
  1364.  
  1365.  
  1366.  Callaghan, el al             Informational                     [Page 54] 
  1367.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  1368.  
  1369.     DESCRIPTION 
  1370.  
  1371.       Procedure CREATE creates a regular file. On entry, the       arguments in CREATE3args are: 
  1372.  
  1373.       where          The location of the file to be created: 
  1374.  
  1375.          dir             The file handle for the directory in which the file             is to be created. 
  1376.  
  1377.          name             The name that is to be associated with the created             file.  Refer to General comments on filenames on             page 30. 
  1378.  
  1379.       When creating a regular file, there are three ways to       create the file as defined by: 
  1380.  
  1381.       how          A discriminated union describing how the server is to          handle the file creation along with the appropriate          attributes: 
  1382.  
  1383.       mode          One of UNCHECKED, GUARDED, and EXCLUSIVE. UNCHECKED          means that the file should be created without checking          for the existence of a duplicate file in the same          directory. In this case, how.obj_attributes is a sattr3          describing the initial attributes for the file. GUARDED          specifies that the server should check for the presence          of a duplicate file before performing the create and          should fail the request with NFS3ERR_EXIST if a          duplicate file exists. If the file does not exist, the          request is performed as described for UNCHECKED.          EXCLUSIVE specifies that the server is to follow          exclusive creation semantics, using the verifier to          ensure exclusive creation of the target. No attributes          may be provided in this case, since the server may use          the target file metadata to store the createverf3          verifier. 
  1384.  
  1385.       On successful return, CREATE3res.status is NFS3_OK and the       results in CREATE3res.resok are: 
  1386.  
  1387.       obj          The file handle of the newly created regular file. 
  1388.  
  1389.  
  1390.  
  1391. Callaghan, el al             Informational                     [Page 55] 
  1392.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  1393.  
  1394.        obj_attributes          The attributes of the regular file just created. 
  1395.  
  1396.       dir_wcc          Weak cache consistency data for the directory,          where.dir. For a client that requires on the          post-CREATE directory attributes, these can be found in          dir_wcc.after. 
  1397.  
  1398.       Otherwise, CREATE3res.status contains the error on failure       and CREATE3res.resfail contains the following: 
  1399.  
  1400.       dir_wcc          Weak cache consistency data for the directory,          where.dir. For a client that requires only the          post-CREATE directory attributes, these can be found in          dir_wcc.after. Even though the CREATE failed, full          wcc_data is returned to allow the client to determine          whether the failing CREATE resulted in any change to          the directory. 
  1401.  
  1402.    IMPLEMENTATION 
  1403.  
  1404.       Unlike the NFS version 2 protocol, in which certain fields       in the initial attributes structure were overloaded to       indicate creation of devices and FIFOs in addition to       regular files, this procedure only supports the creation       of regular files. The MKNOD procedure was introduced in       the NFS version 3 protocol to handle creation of devices       and FIFOs. Implementations should have no reason in the       NFS version 3 protocol to overload CREATE semantics. 
  1405.  
  1406.       One aspect of the NFS version 3 protocol CREATE procedure       warrants particularly careful consideration: the mechanism       introduced to support the reliable exclusive creation of       regular files. The mechanism comes into play when how.mode       is EXCLUSIVE.  In this case, how.verf contains a verifier       that can reasonably be expected to be unique.  A       combination of a client identifier, perhaps the client       network address, and a unique number generated by the       client, perhaps the RPC transaction identifier, may be       appropriate. 
  1407.  
  1408.       If the file does not exist, the server creates the file       and stores the verifier in stable storage. For file       systems that do not provide a mechanism for the storage of       arbitrary file attributes, the server may use one or more       elements of the file metadata to store the verifier. The 
  1409.  
  1410.  
  1411.  
  1412. Callaghan, el al             Informational                     [Page 56] 
  1413.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  1414.  
  1415.        verifier must be stored in stable storage to prevent       erroneous failure on retransmission of the request. It is       assumed that an exclusive create is being performed       because exclusive semantics are critical to the       application. Because of the expected usage, exclusive       CREATE does not rely solely on the normally volatile       duplicate request cache for storage of the verifier. The       duplicate request cache in volatile storage does not       survive a crash and may actually flush on a long network       partition, opening failure windows.  In the UNIX local       file system environment, the expected storage location for       the verifier on creation is the metadata (time stamps) of       the file. For this reason, an exclusive file create may       not include initial attributes because the server would       have nowhere to store the verifier. 
  1416.  
  1417.       If the server can not support these exclusive create       semantics, possibly because of the requirement to commit       the verifier to stable storage, it should fail the CREATE       request with the error, NFS3ERR_NOTSUPP. 
  1418.  
  1419.       During an exclusive CREATE request, if the file already       exists, the server reconstructs the file's verifier and       compares it with the verifier in the request. If they       match, the server treats the request as a success. The       request is presumed to be a duplicate of an earlier,       successful request for which the reply was lost and that       the server duplicate request cache mechanism did not       detect. If the verifiers do not match, the request is       rejected with the status, NFS3ERR_EXIST. 
  1420.  
  1421.       Once the client has performed a successful exclusive       create, it must issue a SETATTR to set the correct file       attributes.  Until it does so, it should not rely upon any       of the file attributes, since the server implementation       may need to overload file metadata to store the verifier. 
  1422.  
  1423.       Use of the GUARDED attribute does not provide exactly-once       semantics.  In particular, if a reply is lost and the       server does not detect the retransmission of the request,       the procedure can fail with NFS3ERR_EXIST, even though the       create was performed successfully. 
  1424.  
  1425.       Refer to General comments on filenames on page 30. 
  1426.  
  1427.  
  1428.  
  1429.  
  1430.  
  1431.  
  1432.  
  1433. Callaghan, el al             Informational                     [Page 57] 
  1434.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  1435.  
  1436.     ERRORS 
  1437.  
  1438.       NFS3ERR_IO       NFS3ERR_ACCES       NFS3ERR_EXIST       NFS3ERR_NOTDIR       NFS3ERR_NOSPC       NFS3ERR_ROFS       NFS3ERR_NAMETOOLONG       NFS3ERR_DQUOT       NFS3ERR_STALE       NFS3ERR_BADHANDLE       NFS3ERR_NOTSUPP       NFS3ERR_SERVERFAULT 
  1439.  
  1440.    SEE ALSO 
  1441.  
  1442.       MKDIR, SYMLINK, MKNOD, and PATHCONF. 
  1443.  
  1444. 3.3.9 Procedure 9: MKDIR - Create a directory 
  1445.  
  1446.    SYNOPSIS 
  1447.  
  1448.       MKDIR3res NFSPROC3_MKDIR(MKDIR3args) = 9; 
  1449.  
  1450.       struct MKDIR3args {            diropargs3   where;            sattr3       attributes;       }; 
  1451.  
  1452.       struct MKDIR3resok {            post_op_fh3   obj;            post_op_attr  obj_attributes;            wcc_data      dir_wcc;       }; 
  1453.  
  1454.       struct MKDIR3resfail {            wcc_data      dir_wcc;       }; 
  1455.  
  1456.       union MKDIR3res switch (nfsstat3 status) {       case NFS3_OK:            MKDIR3resok   resok;       default:            MKDIR3resfail resfail;       }; 
  1457.  
  1458.  
  1459.  
  1460.  
  1461.  
  1462. Callaghan, el al             Informational                     [Page 58] 
  1463.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  1464.  
  1465.     DESCRIPTION 
  1466.  
  1467.       Procedure MKDIR creates a new subdirectory. On entry, the       arguments in MKDIR3args are: 
  1468.  
  1469.       where          The location of the subdirectory to be created: 
  1470.  
  1471.          dir             The file handle for the directory in which the             subdirectory is to be created. 
  1472.  
  1473.          name             The name that is to be associated with the created             subdirectory. Refer to General comments on filenames             on page 30. 
  1474.  
  1475.       attributes          The initial attributes for the subdirectory. 
  1476.  
  1477.       On successful return, MKDIR3res.status is NFS3_OK and the       results in MKDIR3res.resok are: 
  1478.  
  1479.       obj          The file handle for the newly created directory. 
  1480.  
  1481.       obj_attributes          The attributes for the newly created subdirectory. 
  1482.  
  1483.       dir_wcc          Weak cache consistency data for the directory,          where.dir. For a client that requires only the          post-MKDIR directory attributes, these can be found in          dir_wcc.after. 
  1484.  
  1485.       Otherwise, MKDIR3res.status contains the error on failure       and MKDIR3res.resfail contains the following: 
  1486.  
  1487.       dir_wcc          Weak cache consistency data for the directory,          where.dir. For a client that requires only the          post-MKDIR directory attributes, these can be found in          dir_wcc.after. Even though the MKDIR failed, full          wcc_data is returned to allow the client to determine          whether the failing MKDIR resulted in any change to the          directory. 
  1488.  
  1489.  
  1490.  
  1491.  
  1492.  
  1493. Callaghan, el al             Informational                     [Page 59] 
  1494.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  1495.  
  1496.     IMPLEMENTATION 
  1497.  
  1498.       Many server implementations will not allow the filenames,       "." or "..", to be used as targets in a MKDIR operation.       In this case, the server should return NFS3ERR_EXIST.       Refer to General comments on filenames on page 30. 
  1499.  
  1500.    ERRORS 
  1501.  
  1502.       NFS3ERR_IO       NFS3ERR_ACCES       NFS3ERR_EXIST       NFS3ERR_NOTDIR       NFS3ERR_NOSPC       NFS3ERR_ROFS       NFS3ERR_NAMETOOLONG       NFS3ERR_DQUOT       NFS3ERR_STALE       NFS3ERR_BADHANDLE       NFS3ERR_NOTSUPP       NFS3ERR_SERVERFAULT 
  1503.  
  1504.    SEE ALSO 
  1505.  
  1506.       CREATE, SYMLINK, MKNOD, and PATHCONF. 
  1507.  
  1508.  
  1509.  
  1510.  
  1511.  
  1512.  
  1513.  
  1514.  
  1515.  
  1516.  
  1517.  
  1518.  
  1519.  
  1520.  
  1521.  
  1522.  
  1523.  
  1524.  
  1525.  
  1526.  
  1527.  
  1528.  
  1529.  
  1530.  
  1531.  
  1532.  Callaghan, el al             Informational                     [Page 60] 
  1533.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  1534.  
  1535.  3.3.10 Procedure 10: SYMLINK - Create a symbolic link 
  1536.  
  1537.    SYNOPSIS 
  1538.  
  1539.       SYMLINK3res NFSPROC3_SYMLINK(SYMLINK3args) = 10; 
  1540.  
  1541.       struct symlinkdata3 {            sattr3    symlink_attributes;            nfspath3  symlink_data;       }; 
  1542.  
  1543.       struct SYMLINK3args {            diropargs3    where;            symlinkdata3  symlink;       }; 
  1544.  
  1545.       struct SYMLINK3resok {            post_op_fh3   obj;            post_op_attr  obj_attributes;            wcc_data      dir_wcc;       }; 
  1546.  
  1547.       struct SYMLINK3resfail {            wcc_data      dir_wcc;       }; 
  1548.  
  1549.       union SYMLINK3res switch (nfsstat3 status) {       case NFS3_OK:            SYMLINK3resok   resok;       default:            SYMLINK3resfail resfail;       }; 
  1550.  
  1551.    DESCRIPTION 
  1552.  
  1553.       Procedure SYMLINK creates a new symbolic link. On entry,       the arguments in SYMLINK3args are: 
  1554.  
  1555.       where          The location of the symbolic link to be created: 
  1556.  
  1557.          dir             The file handle for the directory in which the             symbolic link is to be created. 
  1558.  
  1559.  
  1560.  
  1561.  
  1562.  
  1563.  
  1564.  
  1565. Callaghan, el al             Informational                     [Page 61] 
  1566.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  1567.  
  1568.           name             The name that is to be associated with the created             symbolic link. Refer to General comments on             filenames on page 30. 
  1569.  
  1570.       symlink          The symbolic link to create: 
  1571.  
  1572.          symlink_attributes             The initial attributes for the symbolic link. 
  1573.  
  1574.          symlink_data             The string containing the symbolic link data. 
  1575.  
  1576.       On successful return, SYMLINK3res.status is NFS3_OK and       SYMLINK3res.resok contains: 
  1577.  
  1578.       obj          The file handle for the newly created symbolic link. 
  1579.  
  1580.       obj_attributes          The attributes for the newly created symbolic link. 
  1581.  
  1582.       dir_wcc          Weak cache consistency data for the directory,          where.dir. For a client that requires only the          post-SYMLINK directory attributes, these can be found          in dir_wcc.after. 
  1583.  
  1584.       Otherwise, SYMLINK3res.status contains the error on       failure and SYMLINK3res.resfail contains the following: 
  1585.  
  1586.       dir_wcc          Weak cache consistency data for the directory,          where.dir. For a client that requires only the          post-SYMLINK directory attributes, these can be found          in dir_wcc.after. Even though the SYMLINK failed, full          wcc_data is returned to allow the client to determine          whether the failing SYMLINK changed the directory. 
  1587.  
  1588.    IMPLEMENTATION 
  1589.  
  1590.       Refer to General comments on filenames on page 30. 
  1591.  
  1592.       For symbolic links, the actual file system node and its       contents are expected to be created in a single atomic       operation.  That is, once the symbolic link is visible,       there must not be a window where a READLINK would fail or 
  1593.  
  1594.  
  1595.  
  1596. Callaghan, el al             Informational                     [Page 62] 
  1597.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  1598.  
  1599.        return incorrect data. 
  1600.  
  1601.    ERRORS 
  1602.  
  1603.       NFS3ERR_IO       NFS3ERR_ACCES       NFS3ERR_EXIST       NFS3ERR_NOTDIR       NFS3ERR_NOSPC       NFS3ERR_ROFS       NFS3ERR_NAMETOOLONG       NFS3ERR_DQUOT       NFS3ERR_STALE       NFS3ERR_BADHANDLE       NFS3ERR_NOTSUPP       NFS3ERR_SERVERFAULT 
  1604.  
  1605.    SEE ALSO 
  1606.  
  1607.       READLINK, CREATE, MKDIR, MKNOD, FSINFO, and PATHCONF. 
  1608.  
  1609. 3.3.11 Procedure 11: MKNOD - Create a special device 
  1610.  
  1611.    SYNOPSIS 
  1612.  
  1613.       MKNOD3res NFSPROC3_MKNOD(MKNOD3args) = 11; 
  1614.  
  1615.       struct devicedata3 {            sattr3     dev_attributes;            specdata3  spec;       }; 
  1616.  
  1617.       union mknoddata3 switch (ftype3 type) {       case NF3CHR:       case NF3BLK:            devicedata3  device;       case NF3SOCK:       case NF3FIFO:            sattr3       pipe_attributes;       default:            void;       }; 
  1618.  
  1619.       struct MKNOD3args {            diropargs3   where;            mknoddata3   what;       }; 
  1620.  
  1621.  
  1622.  
  1623.  Callaghan, el al             Informational                     [Page 63] 
  1624.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  1625.  
  1626.        struct MKNOD3resok {            post_op_fh3   obj;            post_op_attr  obj_attributes;            wcc_data      dir_wcc;       }; 
  1627.  
  1628.       struct MKNOD3resfail {            wcc_data      dir_wcc;       }; 
  1629.  
  1630.       union MKNOD3res switch (nfsstat3 status) {       case NFS3_OK:            MKNOD3resok   resok;       default:            MKNOD3resfail resfail;       }; 
  1631.  
  1632.    DESCRIPTION 
  1633.  
  1634.       Procedure MKNOD creates a new special file of the type,       what.type.  Special files can be device files or named       pipes.  On entry, the arguments in MKNOD3args are: 
  1635.  
  1636.       where          The location of the special file to be created: 
  1637.  
  1638.          dir             The file handle for the directory in which the             special file is to be created. 
  1639.  
  1640.          name             The name that is to be associated with the created             special file. Refer to General comments on filenames             on page 30. 
  1641.  
  1642.       what          A discriminated union identifying the type of the          special file to be created along with the data and          attributes appropriate to the type of the special          file: 
  1643.  
  1644.          type             The type of the object to be created.        When creating a character special file (what.type is       NF3CHR) or a block special file (what.type is NF3BLK),       what includes: 
  1645.  
  1646.  
  1647.  
  1648.  Callaghan, el al             Informational                     [Page 64] 
  1649.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  1650.  
  1651.        device          A structure devicedata3 with the following components: 
  1652.  
  1653.          dev_attributes             The initial attributes for the special file. 
  1654.  
  1655.          spec             The major number stored in device.spec.specdata1 and             the minor number stored in device.spec.specdata2. 
  1656.  
  1657.       When creating a socket (what.type is NF3SOCK) or a FIFO       (what.type is NF3FIFO), what includes: 
  1658.  
  1659.          pipe_attributes             The initial attributes for the special file. 
  1660.  
  1661.       On successful return, MKNOD3res.status is NFS3_OK and       MKNOD3res.resok contains: 
  1662.  
  1663.       obj          The file handle for the newly created special file. 
  1664.  
  1665.       obj_attributes          The attributes for the newly created special file. 
  1666.  
  1667.       dir_wcc          Weak cache consistency data for the directory,          where.dir. For a client that requires only the          post-MKNOD directory attributes, these can be found in          dir_wcc.after. 
  1668.  
  1669.       Otherwise, MKNOD3res.status contains the error on failure       and MKNOD3res.resfail contains the following: 
  1670.  
  1671.       dir_wcc          Weak cache consistency data for the directory,          where.dir. For a client that requires only the          post-MKNOD directory attributes, these can be found in          dir_wcc.after. Even though the MKNOD failed, full          wcc_data is returned to allow the client to determine          whether the failing MKNOD changed the directory. 
  1672.  
  1673.    IMPLEMENTATION 
  1674.  
  1675.       Refer to General comments on filenames on page 30. 
  1676.  
  1677.       Without explicit support for special file type creation in       the NFS version 2 protocol, fields in the CREATE arguments 
  1678.  
  1679.  
  1680.  
  1681. Callaghan, el al             Informational                     [Page 65] 
  1682.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  1683.  
  1684.        were overloaded to indicate creation of certain types of       objects.  This overloading is not necessary in the NFS       version 3 protocol. 
  1685.  
  1686.       If the server does not support any of the defined types,       the error, NFS3ERR_NOTSUPP, should be returned. Otherwise,       if the server does not support the target type or the       target type is illegal, the error, NFS3ERR_BADTYPE, should       be returned. Note that NF3REG, NF3DIR, and NF3LNK are       illegal types for MKNOD. The procedures, CREATE, MKDIR,       and SYMLINK should be used to create these file types,       respectively, instead of MKNOD. 
  1687.  
  1688.    ERRORS 
  1689.  
  1690.       NFS3ERR_IO       NFS3ERR_ACCES       NFS3ERR_EXIST       NFS3ERR_NOTDIR       NFS3ERR_NOSPC       NFS3ERR_ROFS       NFS3ERR_NAMETOOLONG       NFS3ERR_DQUOT       NFS3ERR_STALE       NFS3ERR_BADHANDLE       NFS3ERR_NOTSUPP       NFS3ERR_SERVERFAULT       NFS3ERR_BADTYPE 
  1691.  
  1692.    SEE ALSO 
  1693.  
  1694.       CREATE, MKDIR, SYMLINK, and PATHCONF. 
  1695.  
  1696.  
  1697.  
  1698.  
  1699.  
  1700.  
  1701.  
  1702.  
  1703.  
  1704.  
  1705.  
  1706.  
  1707.  
  1708.  
  1709.  
  1710.  
  1711.  
  1712.  
  1713.  
  1714. Callaghan, el al             Informational                     [Page 66] 
  1715.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  1716.  
  1717.  3.3.12 Procedure 12: REMOVE - Remove a File 
  1718.  
  1719.    SYNOPSIS 
  1720.  
  1721.       REMOVE3res NFSPROC3_REMOVE(REMOVE3args) = 12; 
  1722.  
  1723.       struct REMOVE3args {            diropargs3  object;       }; 
  1724.  
  1725.       struct REMOVE3resok {            wcc_data    dir_wcc;       }; 
  1726.  
  1727.       struct REMOVE3resfail {            wcc_data    dir_wcc;       }; 
  1728.  
  1729.       union REMOVE3res switch (nfsstat3 status) {       case NFS3_OK:            REMOVE3resok   resok;       default:            REMOVE3resfail resfail;       }; 
  1730.  
  1731.    DESCRIPTION 
  1732.  
  1733.       Procedure REMOVE removes (deletes) an entry from a       directory. If the entry in the directory was the last       reference to the corresponding file system object, the       object may be destroyed.  On entry, the arguments in       REMOVE3args are: 
  1734.  
  1735.       object          A diropargs3 structure identifying the entry to be          removed: 
  1736.  
  1737.       dir          The file handle for the directory from which the entry          is to be removed. 
  1738.  
  1739.       name          The name of the entry to be removed. Refer to General          comments on filenames on page 30. 
  1740.  
  1741.       On successful return, REMOVE3res.status is NFS3_OK and       REMOVE3res.resok contains: 
  1742.  
  1743.  
  1744.  
  1745.  Callaghan, el al             Informational                     [Page 67] 
  1746.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  1747.  
  1748.        dir_wcc          Weak cache consistency data for the directory,          object.dir.  For a client that requires only the          post-REMOVE directory attributes, these can be found in          dir_wcc.after. 
  1749.  
  1750.       Otherwise, REMOVE3res.status contains the error on failure       and REMOVE3res.resfail contains the following: 
  1751.  
  1752.       dir_wcc          Weak cache consistency data for the directory,          object.dir.  For a client that requires only the          post-REMOVE directory attributes, these can be found in          dir_wcc.after. Even though the REMOVE failed, full          wcc_data is returned to allow the client to determine          whether the failing REMOVE changed the directory. 
  1753.  
  1754.    IMPLEMENTATION 
  1755.  
  1756.       In general, REMOVE is intended to remove non-directory       file objects and RMDIR is to be used to remove       directories.  However, REMOVE can be used to remove       directories, subject to restrictions imposed by either the       client or server interfaces.  This had been a source of       confusion in the NFS version 2 protocol. 
  1757.  
  1758.       The concept of last reference is server specific. However,       if the nlink field in the previous attributes of the       object had the value 1, the client should not rely on       referring to the object via a file handle. Likewise, the       client should not rely on the resources (disk space,       directory entry, and so on.) formerly associated with the       object becoming immediately available. Thus, if a client       needs to be able to continue to access a file after using       REMOVE to remove it, the client should take steps to make       sure that the file will still be accessible. The usual       mechanism used is to use RENAME to rename the file from       its old name to a new hidden name. 
  1759.  
  1760.       Refer to General comments on filenames on page 30. 
  1761.  
  1762.    ERRORS 
  1763.  
  1764.       NFS3ERR_NOENT       NFS3ERR_IO       NFS3ERR_ACCES       NFS3ERR_NOTDIR       NFS3ERR_NAMETOOLONG 
  1765.  
  1766.  
  1767.  
  1768. Callaghan, el al             Informational                     [Page 68] 
  1769.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  1770.  
  1771.        NFS3ERR_ROFS       NFS3ERR_STALE       NFS3ERR_BADHANDLE       NFS3ERR_SERVERFAULT 
  1772.  
  1773.    SEE ALSO 
  1774.  
  1775.       RMDIR and RENAME. 
  1776.  
  1777. 3.3.13 Procedure 13: RMDIR - Remove a Directory 
  1778.  
  1779.    SYNOPSIS 
  1780.  
  1781.       RMDIR3res NFSPROC3_RMDIR(RMDIR3args) = 13; 
  1782.  
  1783.       struct RMDIR3args {            diropargs3  object;       }; 
  1784.  
  1785.       struct RMDIR3resok {            wcc_data    dir_wcc;       }; 
  1786.  
  1787.       struct RMDIR3resfail {            wcc_data    dir_wcc;       }; 
  1788.  
  1789.       union RMDIR3res switch (nfsstat3 status) {       case NFS3_OK:            RMDIR3resok   resok;       default:            RMDIR3resfail resfail;       }; 
  1790.  
  1791.    DESCRIPTION 
  1792.  
  1793.       Procedure RMDIR removes (deletes) a subdirectory from a       directory. If the directory entry of the subdirectory is       the last reference to the subdirectory, the subdirectory       may be destroyed. On entry, the arguments in RMDIR3args       are: 
  1794.  
  1795.       object          A diropargs3 structure identifying the directory entry          to be removed: 
  1796.  
  1797.  
  1798.  
  1799.  
  1800.  
  1801.  Callaghan, el al             Informational                     [Page 69] 
  1802.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  1803.  
  1804.           dir             The file handle for the directory from which the             subdirectory is to be removed. 
  1805.  
  1806.          name             The name of the subdirectory to be removed. Refer to             General comments on filenames on page 30. 
  1807.  
  1808.       On successful return, RMDIR3res.status is NFS3_OK and       RMDIR3res.resok contains: 
  1809.  
  1810.       dir_wcc          Weak cache consistency data for the directory,          object.dir.  For a client that requires only the          post-RMDIR directory attributes, these can be found in          dir_wcc.after.        Otherwise, RMDIR3res.status contains the error on failure       and RMDIR3res.resfail contains the following: 
  1811.  
  1812.       dir_wcc          Weak cache consistency data for the directory,          object.dir.  For a client that requires only the          post-RMDIR directory attributes, these can be found in          dir_wcc.after. Note that even though the RMDIR failed,          full wcc_data is returned to allow the client to          determine whether the failing RMDIR changed the          directory. 
  1813.  
  1814.    IMPLEMENTATION 
  1815.  
  1816.       Note that on some servers, removal of a non-empty       directory is disallowed. 
  1817.  
  1818.       On some servers, the filename, ".", is illegal. These       servers will return the error, NFS3ERR_INVAL. On some       servers, the filename, "..", is illegal. These servers       will return the error, NFS3ERR_EXIST. This would seem       inconsistent, but allows these servers to comply with       their own specific interface definitions.  Clients should       be prepared to handle both cases. 
  1819.  
  1820.       The client should not rely on the resources (disk space,       directory entry, and so on.) formerly associated with the       directory becoming immediately available. 
  1821.  
  1822.  
  1823.  
  1824.  
  1825.  
  1826.  Callaghan, el al             Informational                     [Page 70] 
  1827.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  1828.  
  1829.     ERRORS 
  1830.  
  1831.       NFS3ERR_NOENT       NFS3ERR_IO       NFS3ERR_ACCES       NFS3ERR_INVAL       NFS3ERR_EXIST       NFS3ERR_NOTDIR       NFS3ERR_NAMETOOLONG       NFS3ERR_ROFS       NFS3ERR_NOTEMPTY       NFS3ERR_STALE       NFS3ERR_BADHANDLE       NFS3ERR_NOTSUPP       NFS3ERR_SERVERFAULT 
  1832.  
  1833.    SEE ALSO 
  1834.  
  1835.       REMOVE. 
  1836.  
  1837. 3.3.14 Procedure 14: RENAME - Rename a File or Directory 
  1838.  
  1839.    SYNOPSIS 
  1840.  
  1841.       RENAME3res NFSPROC3_RENAME(RENAME3args) = 14; 
  1842.  
  1843.       struct RENAME3args {            diropargs3   from;            diropargs3   to;       }; 
  1844.  
  1845.       struct RENAME3resok {            wcc_data     fromdir_wcc;            wcc_data     todir_wcc;       }; 
  1846.  
  1847.       struct RENAME3resfail {            wcc_data     fromdir_wcc;            wcc_data     todir_wcc;       }; 
  1848.  
  1849.       union RENAME3res switch (nfsstat3 status) {       case NFS3_OK:            RENAME3resok   resok;       default:            RENAME3resfail resfail;       }; 
  1850.  
  1851.  
  1852.  
  1853.  Callaghan, el al             Informational                     [Page 71] 
  1854.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  1855.  
  1856.     DESCRIPTION 
  1857.  
  1858.       Procedure RENAME renames the file identified by from.name       in the directory, from.dir, to to.name in the di- rectory,       to.dir. The operation is required to be atomic to the       client. To.dir and from.dir must reside on the same file       system and server. On entry, the arguments in RENAME3args       are: 
  1859.  
  1860.       from          A diropargs3 structure identifying the source (the file          system object to be re-named): 
  1861.  
  1862.          from.dir             The file handle for the directory from which the             entry is to be renamed. 
  1863.  
  1864.          from.name             The name of the entry that identifies the object to             be renamed. Refer to General comments on filenames             on page 30. 
  1865.  
  1866.       to          A diropargs3 structure identifying the target (the new          name of the object): 
  1867.  
  1868.          to.dir             The file handle for the directory to which the             object is to be renamed. 
  1869.  
  1870.          to.name             The new name for the object. Refer to General             comments on filenames on page 30. 
  1871.  
  1872.       If the directory, to.dir, already contains an entry with       the name, to.name, the source object must be compatible       with the target: either both are non-directories or both       are directories and the target must be empty. If       compatible, the existing target is removed before the       rename occurs. If they are not compatible or if the target       is a directory but not empty, the server should return the       error, NFS3ERR_EXIST. 
  1873.  
  1874.       On successful return, RENAME3res.status is NFS3_OK and       RENAME3res.resok contains: 
  1875.  
  1876.  
  1877.  
  1878.  
  1879.  
  1880.  Callaghan, el al             Informational                     [Page 72] 
  1881.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  1882.  
  1883.        fromdir_wcc          Weak cache consistency data for the directory,          from.dir. 
  1884.  
  1885.       todir_wcc          Weak cache consistency data for the directory, to.dir. 
  1886.  
  1887.       Otherwise, RENAME3res.status contains the error on failure       and RENAME3res.resfail contains the following: 
  1888.  
  1889.       fromdir_wcc          Weak cache consistency data for the directory,          from.dir. 
  1890.  
  1891.       todir_wcc          Weak cache consistency data for the directory, to.dir. 
  1892.  
  1893.    IMPLEMENTATION       The RENAME operation must be atomic to the client. The       message "to.dir and from.dir must reside on the same file       system on the server, [or the operation will fail]" means       that the fsid fields in the attributes for the directories       are the same. If they reside on different file systems,       the error, NFS3ERR_XDEV, is returned. Even though the       operation is atomic, the status, NFS3ERR_MLINK, may be       returned if the server used a "unlink/link/unlink"       sequence internally. 
  1894.  
  1895.       A file handle may or may not become stale on a rename.       However, server implementors are strongly encouraged to       attempt to keep file handles from becoming stale in this       fashion. 
  1896.  
  1897.       On some servers, the filenames, "." and "..", are illegal       as either from.name or to.name. In addition, neither       from.name nor to.name can be an alias for from.dir. These       servers will return the error, NFS3ERR_INVAL, in these       cases. 
  1898.  
  1899.       If from and to both refer to the same file (they might       be hard links of each other), then RENAME should perform       no action and return NFS3_OK. 
  1900.  
  1901.       Refer to General comments on filenames on page 30. 
  1902.  
  1903.  
  1904.  
  1905.  
  1906.  
  1907.  
  1908.  
  1909. Callaghan, el al             Informational                     [Page 73] 
  1910.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  1911.  
  1912.     ERRORS 
  1913.  
  1914.       NFS3ERR_NOENT       NFS3ERR_IO       NFS3ERR_ACCES       NFS3ERR_EXIST       NFS3ERR_XDEV       NFS3ERR_NOTDIR       NFS3ERR_ISDIR       NFS3ERR_INVAL       NFS3ERR_NOSPC       NFS3ERR_ROFS       NFS3ERR_MLINK       NFS3ERR_NAMETOOLONG       NFS3ERR_NOTEMPTY       NFS3ERR_DQUOT       NFS3ERR_STALE       NFS3ERR_BADHANDLE       NFS3ERR_NOTSUPP       NFS3ERR_SERVERFAULT 
  1915.  
  1916.    SEE ALSO 
  1917.  
  1918.    REMOVE and LINK. 
  1919.  
  1920. 3.3.15 Procedure 15: LINK - Create Link to an object 
  1921.  
  1922.    SYNOPSIS 
  1923.  
  1924.       LINK3res NFSPROC3_LINK(LINK3args) = 15; 
  1925.  
  1926.       struct LINK3args {            nfs_fh3     file;            diropargs3  link;       }; 
  1927.  
  1928.       struct LINK3resok {            post_op_attr   file_attributes;            wcc_data       linkdir_wcc;       }; 
  1929.  
  1930.       struct LINK3resfail {            post_op_attr   file_attributes;            wcc_data       linkdir_wcc;       }; 
  1931.  
  1932.       union LINK3res switch (nfsstat3 status) {       case NFS3_OK: 
  1933.  
  1934.  
  1935.  
  1936. Callaghan, el al             Informational                     [Page 74] 
  1937.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  1938.  
  1939.             LINK3resok    resok;       default:            LINK3resfail  resfail;       }; 
  1940.  
  1941.    DESCRIPTION 
  1942.  
  1943.       Procedure LINK creates a hard link from file to link.name,       in the directory, link.dir. file and link.dir must reside       on the same file system and server. On entry, the       arguments in LINK3args are: 
  1944.  
  1945.       file          The file handle for the existing file system object. 
  1946.  
  1947.       link          The location of the link to be created: 
  1948.  
  1949.          link.dir             The file handle for the directory in which the link             is to be created. 
  1950.  
  1951.          link.name             The name that is to be associated with the created             link. Refer to General comments on filenames on page             17. 
  1952.  
  1953.       On successful return, LINK3res.status is NFS3_OK and       LINK3res.resok contains: 
  1954.  
  1955.       file_attributes          The post-operation attributes of the file system object          identified by file. 
  1956.  
  1957.       linkdir_wcc          Weak cache consistency data for the directory,          link.dir. 
  1958.  
  1959.       Otherwise, LINK3res.status contains the error on failure       and LINK3res.resfail contains the following: 
  1960.  
  1961.       file_attributes          The post-operation attributes of the file system object          identified by file. 
  1962.  
  1963.       linkdir_wcc          Weak cache consistency data for the directory,          link.dir. 
  1964.  
  1965.  
  1966.  
  1967. Callaghan, el al             Informational                     [Page 75] 
  1968.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  1969.  
  1970.     IMPLEMENTATION 
  1971.  
  1972.       Changes to any property of the hard-linked files are       reflected in all of the linked files. When a hard link is       made to a file, the attributes for the file should have a       value for nlink that is one greater than the value before       the LINK. 
  1973.  
  1974.       The comments under RENAME regarding object and target       residing on the same file system apply here as well. The       comments regarding the target name applies as well. Refer       to General comments on filenames on page 30. 
  1975.  
  1976.    ERRORS 
  1977.  
  1978.       NFS3ERR_IO       NFS3ERR_ACCES       NFS3ERR_EXIST       NFS3ERR_XDEV       NFS3ERR_NOTDIR       NFS3ERR_INVAL       NFS3ERR_NOSPC       NFS3ERR_ROFS       NFS3ERR_MLINK       NFS3ERR_NAMETOOLONG       NFS3ERR_DQUOT       NFS3ERR_STALE       NFS3ERR_BADHANDLE       NFS3ERR_NOTSUPP       NFS3ERR_SERVERFAULT 
  1979.  
  1980.    SEE ALSO 
  1981.  
  1982.       SYMLINK, RENAME and FSINFO. 
  1983.  
  1984. 3.3.16 Procedure 16: READDIR - Read From Directory 
  1985.  
  1986.    SYNOPSIS 
  1987.  
  1988.       READDIR3res NFSPROC3_READDIR(READDIR3args) = 16; 
  1989.  
  1990.       struct READDIR3args {            nfs_fh3      dir;            cookie3      cookie;            cookieverf3  cookieverf;            count3       count;       }; 
  1991.  
  1992.  
  1993.  
  1994.  Callaghan, el al             Informational                     [Page 76] 
  1995.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  1996.  
  1997.        struct entry3 {            fileid3      fileid;            filename3    name;            cookie3      cookie;            entry3       *nextentry;       }; 
  1998.  
  1999.       struct dirlist3 {            entry3       *entries;            bool         eof;       }; 
  2000.  
  2001.       struct READDIR3resok {            post_op_attr dir_attributes;            cookieverf3  cookieverf;            dirlist3     reply;       }; 
  2002.  
  2003.       struct READDIR3resfail {            post_op_attr dir_attributes;       }; 
  2004.  
  2005.       union READDIR3res switch (nfsstat3 status) {       case NFS3_OK:            READDIR3resok   resok;       default:            READDIR3resfail resfail;       }; 
  2006.  
  2007.    DESCRIPTION 
  2008.  
  2009.       Procedure READDIR retrieves a variable number of entries,       in sequence, from a directory and returns the name and       file identifier for each, with information to allow the       client to request additional directory entries in a       subsequent READDIR request. On entry, the arguments in       READDIR3args are: 
  2010.  
  2011.       dir          The file handle for the directory to be read. 
  2012.  
  2013.       cookie          This should be set to 0 in the first request to read          the directory. On subsequent requests, it should be a          cookie as returned by the server. 
  2014.  
  2015.  
  2016.  
  2017.  
  2018.  
  2019.  Callaghan, el al             Informational                     [Page 77] 
  2020.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  2021.  
  2022.        cookieverf          This should be set to 0 in the first request to read          the directory. On subsequent requests, it should be a          cookieverf as returned by the server. The cookieverf          must match that returned by the READDIR in which the          cookie was acquired. 
  2023.  
  2024.       count          The maximum size of the READDIR3resok structure, in          bytes.  The size must include all XDR overhead. The          server is free to return less than count bytes of          data. 
  2025.  
  2026.       On successful return, READDIR3res.status is NFS3_OK and       READDIR3res.resok contains: 
  2027.  
  2028.       dir_attributes          The attributes of the directory, dir. 
  2029.  
  2030.       cookieverf          The cookie verifier. 
  2031.  
  2032.       reply          The directory list: 
  2033.  
  2034.          entries             Zero or more directory (entry3) entries. 
  2035.  
  2036.          eof             TRUE if the last member of reply.entries is the last             entry in the directory or the list reply.entries is             empty and the cookie corresponded to the end of the             directory. If FALSE, there may be more entries to             read. 
  2037.  
  2038.       Otherwise, READDIR3res.status contains the error on       failure and READDIR3res.resfail contains the following: 
  2039.  
  2040.       dir_attributes          The attributes of the directory, dir. 
  2041.  
  2042.    IMPLEMENTATION 
  2043.  
  2044.       In the NFS version 2 protocol, each directory entry       returned included a cookie identifying a point in the       directory. By including this cookie in a subsequent       READDIR, the client could resume the directory read at any       point in the directory.  One problem with this scheme was 
  2045.  
  2046.  
  2047.  
  2048. Callaghan, el al             Informational                     [Page 78] 
  2049.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  2050.  
  2051.        that there was no easy way for a server to verify that a       cookie was valid. If two READDIRs were separated by one or       more operations that changed the directory in some way       (for example, reordering or compressing it), it was       possible that the second READDIR could miss entries, or       process entries more than once. If the cookie was no       longer usable, for example, pointing into the middle of a       directory entry, the server would have to either round the       cookie down to the cookie of the previous entry or round       it up to the cookie of the next entry in the directory.       Either way would possibly lead to incorrect results and       the client would be unaware that any problem existed. 
  2052.  
  2053.       In the NFS version 3 protocol, each READDIR request       includes both a cookie and a cookie verifier. For the       first call, both are set to 0.  The response includes a       new cookie verifier, with a cookie per entry.  For       subsequent READDIRs, the client must present both the       cookie and the corresponding cookie verifier.  If the       server detects that the cookie is no longer valid, the       server will reject the READDIR request with the status,       NFS3ERR_BAD_COOKIE. The client should be careful to       avoid holding directory entry cookies across operations       that modify the directory contents, such as REMOVE and       CREATE. 
  2054.  
  2055.       One implementation of the cookie-verifier mechanism might       be for the server to use the modification time of the       directory. This might be overly restrictive, however. A       better approach would be to record the time of the last       directory modification that changed the directory       organization in a way that would make it impossible to       reliably interpret a cookie. Servers in which directory       cookies are always valid are free to use zero as the       verifier always. 
  2056.  
  2057.       The server may return fewer than count bytes of       XDR-encoded entries.  The count specified by the client in       the request should be greater than or equal to FSINFO       dtpref. 
  2058.  
  2059.       Since UNIX clients give a special meaning to the fileid       value zero, UNIX clients should be careful to map zero       fileid values to some other value and servers should try       to avoid sending a zero fileid. 
  2060.  
  2061.  
  2062.  
  2063.  
  2064.  
  2065.  Callaghan, el al             Informational                     [Page 79] 
  2066.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  2067.  
  2068.     ERRORS 
  2069.  
  2070.       NFS3ERR_IO       NFS3ERR_ACCES       NFS3ERR_NOTDIR       NFS3ERR_BAD_COOKIE       NFS3ERR_TOOSMALL       NFS3ERR_STALE       NFS3ERR_BADHANDLE       NFS3ERR_SERVERFAULT 
  2071.  
  2072.    SEE ALSO 
  2073.  
  2074.       READDIRPLUS and FSINFO. 
  2075.  
  2076. 3.3.17 Procedure 17: READDIRPLUS - Extended read from directory 
  2077.  
  2078.    SYNOPSIS 
  2079.  
  2080.       READDIRPLUS3res NFSPROC3_READDIRPLUS(READDIRPLUS3args) = 17; 
  2081.  
  2082.       struct READDIRPLUS3args {            nfs_fh3      dir;            cookie3      cookie;            cookieverf3  cookieverf;            count3       dircount;            count3       maxcount;       }; 
  2083.  
  2084.       struct entryplus3 {            fileid3      fileid;            filename3    name;            cookie3      cookie;            post_op_attr name_attributes;            post_op_fh3  name_handle;            entryplus3   *nextentry;       }; 
  2085.  
  2086.       struct dirlistplus3 {            entryplus3   *entries;            bool         eof;       }; 
  2087.  
  2088.       struct READDIRPLUS3resok {            post_op_attr dir_attributes;            cookieverf3  cookieverf;            dirlistplus3 reply;       }; 
  2089.  
  2090.  
  2091.  
  2092. Callaghan, el al             Informational                     [Page 80] 
  2093.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  2094.  
  2095.  
  2096.  
  2097.       struct READDIRPLUS3resfail {            post_op_attr dir_attributes;       }; 
  2098.  
  2099.       union READDIRPLUS3res switch (nfsstat3 status) {       case NFS3_OK:            READDIRPLUS3resok   resok;       default:            READDIRPLUS3resfail resfail;       }; 
  2100.  
  2101.    DESCRIPTION 
  2102.  
  2103.       Procedure READDIRPLUS retrieves a variable number of       entries from a file system directory and returns complete       information about each along with information to allow the       client to request additional directory entries in a       subsequent READDIRPLUS.  READDIRPLUS differs from READDIR       only in the amount of information returned for each       entry.  In READDIR, each entry returns the filename and       the fileid.  In READDIRPLUS, each entry returns the name,       the fileid, attributes (including the fileid), and file       handle. On entry, the arguments in READDIRPLUS3args are: 
  2104.  
  2105.       dir          The file handle for the directory to be read. 
  2106.  
  2107.       cookie          This should be set to 0 on the first request to read a          directory. On subsequent requests, it should be a          cookie as returned by the server. 
  2108.  
  2109.       cookieverf          This should be set to 0 on the first request to read a          directory. On subsequent requests, it should be a          cookieverf as returned by the server. The cookieverf          must match that returned by the READDIRPLUS call in          which the cookie was acquired. 
  2110.  
  2111.       dircount          The maximum number of bytes of directory information          returned. This number should not include the size of          the attributes and file handle portions of the result. 
  2112.  
  2113.       maxcount          The maximum size of the READDIRPLUS3resok structure, in          bytes. The size must include all XDR overhead. The 
  2114.  
  2115.  
  2116.  
  2117. Callaghan, el al             Informational                     [Page 81] 
  2118.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  2119.  
  2120.           server is free to return fewer than maxcount bytes of          data. 
  2121.  
  2122.       On successful return, READDIRPLUS3res.status is NFS3_OK       and READDIRPLUS3res.resok contains: 
  2123.  
  2124.       dir_attributes          The attributes of the directory, dir. 
  2125.  
  2126.       cookieverf          The cookie verifier. 
  2127.  
  2128.       reply          The directory list: 
  2129.  
  2130.          entries             Zero or more directory (entryplus3) entries. 
  2131.  
  2132.          eof             TRUE if the last member of reply.entries is the last             entry in the directory or the list reply.entries is             empty and the cookie corresponded to the end of the             directory. If FALSE, there may be more entries to             read. 
  2133.  
  2134.       Otherwise, READDIRPLUS3res.status contains the error on       failure and READDIRPLUS3res.resfail contains the following: 
  2135.  
  2136.       dir_attributes          The attributes of the directory, dir. 
  2137.  
  2138.    IMPLEMENTATION 
  2139.  
  2140.       Issues that need to be understood for this procedure       include increased cache flushing activity on the client       (as new file handles are returned with names which are       entered into caches) and over-the-wire overhead versus       expected subsequent LOOKUP elimination. It is thought that       this procedure may improve performance for directory       browsing where attributes are always required as on the       Apple Macintosh operating system and for MS-DOS. 
  2141.  
  2142.       The dircount and maxcount fields are included as an       optimization.  Consider a READDIRPLUS call on a UNIX       operating system implementation for 1048 bytes; the reply       does not contain many entries because of the overhead due       to attributes and file handles. An alternative is to issue       a READDIRPLUS call for 8192 bytes and then only use the 
  2143.  
  2144.  
  2145.  
  2146. Callaghan, el al             Informational                     [Page 82] 
  2147.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  2148.  
  2149.        first 1048 bytes of directory information. However, the       server doesn't know that all that is needed is 1048 bytes       of directory information (as would be returned by       READDIR). It sees the 8192 byte request and issues a       VOP_READDIR for 8192 bytes. It then steps through all of       those directory entries, obtaining attributes and file       handles for each entry.  When it encodes the result, the       server only encodes until it gets 8192 bytes of results       which include the attributes and file handles. Thus, it       has done a larger VOP_READDIR and many more attribute       fetches than it needed to. The ratio of the directory       entry size to the size of the attributes plus the size of       the file handle is usually at least 8 to 1. The server has       done much more work than it needed to. 
  2150.  
  2151.       The solution to this problem is for the client to provide       two counts to the server. The first is the number of bytes       of directory information that the client really wants,       dircount.  The second is the maximum number of bytes in       the result, including the attributes and file handles,       maxcount. Thus, the server will issue a VOP_READDIR for       only the number of bytes that the client really wants to       get, not an inflated number.  This should help to reduce       the size of VOP_READDIR requests on the server, thus       reducing the amount of work done there, and to reduce the       number of VOP_LOOKUP, VOP_GETATTR, and other calls done by       the server to construct attributes and file handles. 
  2152.  
  2153.    ERRORS 
  2154.  
  2155.       NFS3ERR_IO       NFS3ERR_ACCES       NFS3ERR_NOTDIR       NFS3ERR_BAD_COOKIE       NFS3ERR_TOOSMALL       NFS3ERR_STALE       NFS3ERR_BADHANDLE       NFS3ERR_NOTSUPP       NFS3ERR_SERVERFAULT 
  2156.  
  2157.    SEE ALSO 
  2158.  
  2159.       READDIR. 
  2160.  
  2161.  
  2162.  
  2163.  
  2164.  
  2165.  
  2166.  
  2167.  Callaghan, el al             Informational                     [Page 83] 
  2168.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  2169.  
  2170.  3.3.18 Procedure 18: FSSTAT - Get dynamic file system information 
  2171.  
  2172.    SYNOPSIS 
  2173.  
  2174.       FSSTAT3res NFSPROC3_FSSTAT(FSSTAT3args) = 18; 
  2175.  
  2176.       struct FSSTAT3args {            nfs_fh3   fsroot;       }; 
  2177.  
  2178.       struct FSSTAT3resok {            post_op_attr obj_attributes;            size3        tbytes;            size3        fbytes;            size3        abytes;            size3        tfiles;            size3        ffiles;            size3        afiles;            uint32       invarsec;       }; 
  2179.  
  2180.       struct FSSTAT3resfail {            post_op_attr obj_attributes;       }; 
  2181.  
  2182.       union FSSTAT3res switch (nfsstat3 status) {       case NFS3_OK:            FSSTAT3resok   resok;       default:            FSSTAT3resfail resfail;       }; 
  2183.  
  2184.    DESCRIPTION 
  2185.  
  2186.       Procedure FSSTAT retrieves volatile file system state       information. On entry, the arguments in FSSTAT3args are: 
  2187.  
  2188.       fsroot          A file handle identifying a object in the file system.          This is normally a file handle for a mount point for a          file system, as originally obtained from the MOUNT          service on the server. 
  2189.  
  2190.       On successful return, FSSTAT3res.status is NFS3_OK and       FSSTAT3res.resok contains: 
  2191.  
  2192.  
  2193.  
  2194.  
  2195.  
  2196.  Callaghan, el al             Informational                     [Page 84] 
  2197.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  2198.  
  2199.        obj_attributes          The attributes of the file system object specified in          fsroot. 
  2200.  
  2201.       tbytes          The total size, in bytes, of the file system. 
  2202.  
  2203.       fbytes          The amount of free space, in bytes, in the file          system. 
  2204.  
  2205.       abytes          The amount of free space, in bytes, available to the          user identified by the authentication information in          the RPC.  (This reflects space that is reserved by the          file system; it does not reflect any quota system          implemented by the server.) 
  2206.  
  2207.       tfiles          The total number of file slots in the file system. (On          a UNIX server, this often corresponds to the number of          inodes configured.) 
  2208.  
  2209.       ffiles          The number of free file slots in the file system. 
  2210.  
  2211.       afiles          The number of free file slots that are available to the          user corresponding to the authentication information in          the RPC.  (This reflects slots that are reserved by the          file system; it does not reflect any quota system          implemented by the server.) 
  2212.  
  2213.       invarsec          A measure of file system volatility: this is the number          of seconds for which the file system is not expected to          change. For a volatile, frequently updated file system,          this will be 0. For an immutable file system, such as a          CD-ROM, this would be the largest unsigned integer. For          file systems that are infrequently modified, for          example, one containing local executable programs and          on-line documentation, a value corresponding to a few          hours or days might be used. The client may use this as          a hint in tuning its cache management. Note however,          this measure is assumed to be dynamic and may change at          any time. 
  2214.  
  2215.  
  2216.  
  2217.  
  2218.  
  2219. Callaghan, el al             Informational                     [Page 85] 
  2220.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  2221.  
  2222.        Otherwise, FSSTAT3res.status contains the error on failure       and FSSTAT3res.resfail contains the following: 
  2223.  
  2224.       obj_attributes          The attributes of the file system object specified in          fsroot. 
  2225.  
  2226.    IMPLEMENTATION 
  2227.  
  2228.       Not all implementations can support the entire list of       attributes. It is expected that servers will make a best       effort at supporting all the attributes. 
  2229.  
  2230.    ERRORS 
  2231.  
  2232.       NFS3ERR_IO       NFS3ERR_STALE       NFS3ERR_BADHANDLE       NFS3ERR_SERVERFAULT 
  2233.  
  2234.    SEE ALSO 
  2235.  
  2236.       FSINFO. 
  2237.  
  2238. 3.3.19 Procedure 19: FSINFO - Get static file system Information 
  2239.  
  2240.    SYNOPSIS 
  2241.  
  2242.       FSINFO3res NFSPROC3_FSINFO(FSINFO3args) = 19; 
  2243.  
  2244.       const FSF3_LINK        = 0x0001;       const FSF3_SYMLINK     = 0x0002;       const FSF3_HOMOGENEOUS = 0x0008;       const FSF3_CANSETTIME  = 0x0010; 
  2245.  
  2246.       struct FSINFOargs {            nfs_fh3   fsroot;       }; 
  2247.  
  2248.       struct FSINFO3resok {            post_op_attr obj_attributes;            uint32       rtmax;            uint32       rtpref;            uint32       rtmult;            uint32       wtmax;            uint32       wtpref;            uint32       wtmult;            uint32       dtpref; 
  2249.  
  2250.  
  2251.  
  2252. Callaghan, el al             Informational                     [Page 86] 
  2253.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  2254.  
  2255.             size3        maxfilesize;            nfstime3     time_delta;            uint32       properties;       }; 
  2256.  
  2257.       struct FSINFO3resfail {            post_op_attr obj_attributes;       }; 
  2258.  
  2259.       union FSINFO3res switch (nfsstat3 status) {       case NFS3_OK:            FSINFO3resok   resok;       default:            FSINFO3resfail resfail;       }; 
  2260.  
  2261.    DESCRIPTION 
  2262.  
  2263.       Procedure FSINFO retrieves nonvolatile file system state       information and general information about the NFS version       3 protocol server implementation. On entry, the arguments       in FSINFO3args are: 
  2264.  
  2265.       fsroot          A file handle identifying a file object. Normal usage          is to provide a file handle for a mount point for a          file system, as originally obtained from the MOUNT          service on the server. 
  2266.  
  2267.       On successful return, FSINFO3res.status is NFS3_OK and       FSINFO3res.resok contains: 
  2268.  
  2269.       obj_attributes          The attributes of the file system object specified in          fsroot. 
  2270.  
  2271.       rtmax          The maximum size in bytes of a READ request supported          by the server. Any READ with a number greater than          rtmax will result in a short read of rtmax bytes or          less. 
  2272.  
  2273.       rtpref          The preferred size of a READ request. This should be          the same as rtmax unless there is a clear benefit in          performance or efficiency. 
  2274.  
  2275.  
  2276.  
  2277.  
  2278.  
  2279. Callaghan, el al             Informational                     [Page 87] 
  2280.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  2281.  
  2282.        rtmult          The suggested multiple for the size of a READ request. 
  2283.  
  2284.       wtmax          The maximum size of a WRITE request supported by the          server.  In general, the client is limited by wtmax          since there is no guarantee that a server can handle a          larger write. Any WRITE with a count greater than wtmax          will result in a short write of at most wtmax bytes. 
  2285.  
  2286.       wtpref          The preferred size of a WRITE request. This should be          the same as wtmax unless there is a clear benefit in          performance or efficiency. 
  2287.  
  2288.       wtmult          The suggested multiple for the size of a WRITE          request. 
  2289.  
  2290.       dtpref          The preferred size of a READDIR request. 
  2291.  
  2292.       maxfilesize          The maximum size of a file on the file system. 
  2293.  
  2294.       time_delta          The server time granularity. When setting a file time          using SETATTR, the server guarantees only to preserve          times to this accuracy. If this is {0, 1}, the server          can support nanosecond times, {0, 1000000} denotes          millisecond precision, and {1, 0} indicates that times          are accurate only to the nearest second. 
  2295.  
  2296.       properties          A bit mask of file system properties. The following          values are defined: 
  2297.  
  2298.          FSF_LINK             If this bit is 1 (TRUE), the file system supports             hard links. 
  2299.  
  2300.          FSF_SYMLINK             If this bit is 1 (TRUE), the file system supports             symbolic links. 
  2301.  
  2302.          FSF_HOMOGENEOUS             If this bit is 1 (TRUE), the information returned by             PATHCONF is identical for every file and directory 
  2303.  
  2304.  
  2305.  
  2306. Callaghan, el al             Informational                     [Page 88] 
  2307.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  2308.  
  2309.              in the file system. If it is 0 (FALSE), the client             should retrieve PATHCONF information for each file             and directory as required. 
  2310.  
  2311.          FSF_CANSETTIME             If this bit is 1 (TRUE), the server will set the             times for a file via SETATTR if requested (to the             accuracy indicated by time_delta). If it is 0             (FALSE), the server cannot set times as requested. 
  2312.  
  2313.       Otherwise, FSINFO3res.status contains the error on failure       and FSINFO3res.resfail contains the following: 
  2314.  
  2315.       attributes          The attributes of the file system object specified in          fsroot. 
  2316.  
  2317.    IMPLEMENTATION 
  2318.  
  2319.       Not all implementations can support the entire list of       attributes. It is expected that a server will make a best       effort at supporting all the attributes. 
  2320.  
  2321.       The file handle provided is expected to be the file handle       of the file system root, as returned to the MOUNT       operation.  Since mounts may occur anywhere within an       exported tree, the server should expect FSINFO requests       specifying file handles within the exported file system.       A server may export different types of file systems with       different attributes returned to the FSINFO call. The       client should retrieve FSINFO information for each mount       completed. Though a server may return different FSINFO       information for different files within a file system,       there is no requirement that a client obtain FSINFO       information for other than the file handle returned at       mount. 
  2322.  
  2323.       The maxfilesize field determines whether a server's       particular file system uses 32 bit sizes and offsets or 64       bit file sizes and offsets. This may affect a client's       processing. 
  2324.  
  2325.       The preferred sizes for requests are nominally tied to an       exported file system mounted by a client. A surmountable       issue arises in that the transfer size for an NFS version       3 protocol request is not only dependent on       characteristics of the file system but also on       characteristics of the network interface, particularly the 
  2326.  
  2327.  
  2328.  
  2329. Callaghan, el al             Informational                     [Page 89] 
  2330.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  2331.  
  2332.        maximum transfer unit (MTU). A server implementation can       advertise different transfer sizes (for the fields, rtmax,       rtpref, wtmax, wtpref, and dtpref) depending on the       interface on which the FSINFO request is received. This is       an implementation issue. 
  2333.  
  2334.    ERRORS 
  2335.  
  2336.       NFS3ERR_STALE       NFS3ERR_BADHANDLE       NFS3ERR_SERVERFAULT 
  2337.  
  2338.    SEE ALSO 
  2339.  
  2340.       READLINK, WRITE, READDIR, FSSTAT and PATHCONF. 
  2341.  
  2342. 3.3.20 Procedure 20: PATHCONF - Retrieve POSIX information 
  2343.  
  2344.    SYNOPSIS 
  2345.  
  2346.       PATHCONF3res NFSPROC3_PATHCONF(PATHCONF3args) = 20; 
  2347.  
  2348.       struct PATHCONF3args {            nfs_fh3   object;       }; 
  2349.  
  2350.       struct PATHCONF3resok {            post_op_attr obj_attributes;            uint32       linkmax;            uint32       name_max;            bool         no_trunc;            bool         chown_restricted;            bool         case_insensitive;            bool         case_preserving;       }; 
  2351.  
  2352.       struct PATHCONF3resfail {            post_op_attr obj_attributes;       }; 
  2353.  
  2354.       union PATHCONF3res switch (nfsstat3 status) {       case NFS3_OK:            PATHCONF3resok   resok;       default:            PATHCONF3resfail resfail;       }; 
  2355.  
  2356.  
  2357.  
  2358.  
  2359.  
  2360. Callaghan, el al             Informational                     [Page 90] 
  2361.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  2362.  
  2363.     DESCRIPTION 
  2364.  
  2365.       Procedure PATHCONF retrieves the pathconf information for       a file or directory. If the FSF_HOMOGENEOUS bit is set in       FSFINFO3resok.properties, the pathconf information will be       the same for all files and directories in the exported       file system in which this file or directory resides. On       entry, the arguments in PATHCONF3args are: 
  2366.  
  2367.       object          The file handle for the file system object. 
  2368.  
  2369.       On successful return, PATHCONF3res.status is NFS3_OK and       PATHCONF3res.resok contains: 
  2370.  
  2371.       obj_attributes          The attributes of the object specified by object. 
  2372.  
  2373.       linkmax          The maximum number of hard links to an object. 
  2374.  
  2375.       name_max          The maximum length of a component of a filename. 
  2376.  
  2377.       no_trunc          If TRUE, the server will reject any request that          includes a name longer than name_max with the error,          NFS3ERR_NAMETOOLONG. If FALSE, any length name over          name_max bytes will be silently truncated to name_max          bytes. 
  2378.  
  2379.       chown_restricted          If TRUE, the server will reject any request to change          either the owner or the group associated with a file if          the caller is not the privileged user. (Uid 0.) 
  2380.  
  2381.       case_insensitive          If TRUE, the server file system does not distinguish          case when interpreting filenames. 
  2382.  
  2383.       case_preserving          If TRUE, the server file system will preserve the case          of a name during a CREATE, MKDIR, MKNOD, SYMLINK,          RENAME, or LINK operation. 
  2384.  
  2385.       Otherwise, PATHCONF3res.status contains the error on       failure and PATHCONF3res.resfail contains the following: 
  2386.  
  2387.  
  2388.  
  2389.  Callaghan, el al             Informational                     [Page 91] 
  2390.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  2391.  
  2392.        obj_attributes          The attributes of the object specified by object. 
  2393.  
  2394.    IMPLEMENTATION 
  2395.  
  2396.       In some implementations of the NFS version 2 protocol,       pathconf information was obtained at mount time through       the MOUNT protocol.  The proper place to obtain it, is as       here, in the NFS version 3 protocol itself. 
  2397.  
  2398.    ERRORS 
  2399.  
  2400.       NFS3ERR_STALE       NFS3ERR_BADHANDLE       NFS3ERR_SERVERFAULT 
  2401.  
  2402.    SEE ALSO 
  2403.  
  2404.       LOOKUP, CREATE, MKDIR, SYMLINK, MKNOD, RENAME, LINK and FSINFO. 
  2405.  
  2406. 3.3.21 Procedure 21: COMMIT - Commit cached data on a server to stable        storage 
  2407.  
  2408.    SYNOPSIS 
  2409.  
  2410.       COMMIT3res NFSPROC3_COMMIT(COMMIT3args) = 21; 
  2411.  
  2412.       struct COMMIT3args {            nfs_fh3    file;            offset3    offset;            count3     count;       }; 
  2413.  
  2414.       struct COMMIT3resok {            wcc_data   file_wcc;            writeverf3 verf;       }; 
  2415.  
  2416.       struct COMMIT3resfail {            wcc_data   file_wcc;       }; 
  2417.  
  2418.       union COMMIT3res switch (nfsstat3 status) {       case NFS3_OK:            COMMIT3resok   resok;       default:            COMMIT3resfail resfail;       }; 
  2419.  
  2420.  
  2421.  
  2422. Callaghan, el al             Informational                     [Page 92] 
  2423.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  2424.  
  2425.  
  2426.  
  2427.    DESCRIPTION 
  2428.  
  2429.       Procedure COMMIT forces or flushes data to stable storage       that was previously written with a WRITE procedure call       with the stable field set to UNSTABLE. On entry, the       arguments in COMMIT3args are: 
  2430.  
  2431.       file          The file handle for the file to which data is to be          flushed (committed). This must identify a file system          object of type, NF3REG. 
  2432.  
  2433.       offset          The position within the file at which the flush is to          begin.  An offset of 0 means to flush data starting at          the beginning of the file. 
  2434.  
  2435.       count          The number of bytes of data to flush. If count is 0, a          flush from offset to the end of file is done. 
  2436.  
  2437.       On successful return, COMMIT3res.status is NFS3_OK and       COMMIT3res.resok contains: 
  2438.  
  2439.       file_wcc          Weak cache consistency data for the file. For a client          that requires only the post-operation file attributes,          these can be found in file_wcc.after. 
  2440.  
  2441.       verf          This is a cookie that the client can use to determine          whether the server has rebooted between a call to WRITE          and a subsequent call to COMMIT. This cookie must be          consistent during a single boot session and must be          unique between instances of the NFS version 3 protocol          server where uncommitted data may be lost. 
  2442.  
  2443.       Otherwise, COMMIT3res.status contains the error on failure       and COMMIT3res.resfail contains the following: 
  2444.  
  2445.       file_wcc          Weak cache consistency data for the file. For a client          that requires only the post-write file attributes,          these can be found in file_wcc.after. Even though the          COMMIT failed, full wcc_data is returned to allow the          client to determine whether the file changed on the          server between calls to WRITE and COMMIT. 
  2446.  
  2447.  
  2448.  
  2449. Callaghan, el al             Informational                     [Page 93] 
  2450.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  2451.  
  2452.     IMPLEMENTATION 
  2453.  
  2454.       Procedure COMMIT is similar in operation and semantics to       the POSIX fsync(2) system call that synchronizes a file's       state with the disk, that is it flushes the file's data       and metadata to disk. COMMIT performs the same operation       for a client, flushing any unsynchronized data and       metadata on the server to the server's disk for the       specified file. Like fsync(2), it may be that there is       some modified data or no modified data to synchronize. The       data may have been synchronized by the server's normal       periodic buffer synchronization activity. COMMIT will       always return NFS3_OK, unless there has been an unexpected       error. 
  2455.  
  2456.       COMMIT differs from fsync(2) in that it is possible for       the client to flush a range of the file (most likely       triggered by a buffer-reclamation scheme on the client       before file has been completely written). 
  2457.  
  2458.       The server implementation of COMMIT is reasonably simple.       If the server receives a full file COMMIT request, that is       starting at offset 0 and count 0, it should do the       equivalent of fsync()'ing the file. Otherwise, it should       arrange to have the cached data in the range specified by       offset and count to be flushed to stable storage.  In both       cases, any metadata associated with the file must be       flushed to stable storage before returning. It is not an       error for there to be nothing to flush on the server.       This means that the data and metadata that needed to be       flushed have already been flushed or lost during the last       server failure. 
  2459.  
  2460.       The client implementation of COMMIT is a little more       complex.  There are two reasons for wanting to commit a       client buffer to stable storage. The first is that the       client wants to reuse a buffer. In this case, the offset       and count of the buffer are sent to the server in the       COMMIT request. The server then flushes any cached data       based on the offset and count, and flushes any metadata       associated with the file. It then returns the status of       the flush and the verf verifier.  The other reason for the       client to generate a COMMIT is for a full file flush, such       as may be done at close. In this case, the client would       gather all of the buffers for this file that contain       uncommitted data, do the COMMIT operation with an offset       of 0 and count of 0, and then free all of those buffers.       Any other dirty buffers would be sent to the server in the 
  2461.  
  2462.  
  2463.  
  2464. Callaghan, el al             Informational                     [Page 94] 
  2465.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  2466.  
  2467.        normal fashion. 
  2468.  
  2469.       This implementation will require some modifications to the       buffer cache on the client. After a buffer is written with       stable UNSTABLE, it must be considered as dirty by the       client system until it is either flushed via a COMMIT       operation or written via a WRITE operation with stable set       to FILE_SYNC or DATA_SYNC. This is done to prevent the       buffer from being freed and reused before the data can be       flushed to stable storage on the server. 
  2470.  
  2471.       When a response comes back from either a WRITE or a COMMIT       operation that contains an unexpected verf, the client       will need to retransmit all of the buffers containing       uncommitted cached data to the server.  How this is to be       done is up to the implementor. If there is only one buffer       of interest, then it should probably be sent back over in       a WRITE request with the appropriate stable flag. If there       more than one, it might be worthwhile retransmitting all       of the buffers in WRITE requests with stable set to       UNSTABLE and then retransmitting the COMMIT operation to       flush all of the data on the server to stable storage. The       timing of these retransmissions is left to the       implementor. 
  2472.  
  2473.       The above description applies to page-cache-based systems       as well as buffer-cache-based systems. In those systems,       the virtual memory system will need to be modified instead       of the buffer cache. 
  2474.  
  2475.       See additional comments on WRITE on page 49. 
  2476.  
  2477.    ERRORS 
  2478.  
  2479.       NFS3ERR_IO       NFS3ERR_STALE       NFS3ERR_BADHANDLE       NFS3ERR_SERVERFAULT 
  2480.  
  2481.    SEE ALSO 
  2482.  
  2483.       WRITE. 
  2484.  
  2485.  
  2486.  
  2487.  
  2488.  
  2489.  
  2490.  
  2491.  
  2492.  
  2493. Callaghan, el al             Informational                     [Page 95] 
  2494.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  2495.  
  2496.  4. Implementation issues 
  2497.  
  2498.    The NFS version 3 protocol was designed to allow different    operating systems to share files. However, since it was    designed in a UNIX environment, many operations have    semantics similar to the operations of the UNIX file system.    This section discusses some of the general    implementation-specific details and semantic issues.    Procedure descriptions have implementation comments specific    to that procedure. 
  2499.  
  2500.    A number of papers have been written describing issues    encountered when constructing an NFS version 2 protocol    implementation. The best overview paper is still [Sandberg].    [Israel], [Macklem], and [Pawlowski] describe other    implementations. [X/OpenNFS] provides a complete description    of the NFS version 2 protocol and supporting protocols, as    well as a discussion on implementation issues and procedure    and error semantics. Many of the issues encountered when    constructing an NFS version 2 protocol implementation will be    encountered when constructing an NFS version 3 protocol    implementation. 
  2501.  
  2502. 4.1 Multiple version support 
  2503.  
  2504.    The RPC protocol provides explicit support for versioning of    a service. Client and server implementations of NFS version 3    protocol should support both versions, for full backwards    compatibility, when possible. Default behavior of the RPC    binding protocol is the client and server bind using the    highest version number they both support. Client or server    implementations that cannot easily support both versions (for    example, because of memory restrictions) will have to choose    what version to support. The NFS version 2 protocol would be    a safe choice since fully capable clients and servers should    support both versions. However, this choice would need to be    made keeping all requirements in mind. 
  2505.  
  2506. 4.2 Server/client relationship 
  2507.  
  2508.    The NFS version 3 protocol is designed to allow servers to be    as simple and general as possible. Sometimes the simplicity    of the server can be a problem, if the client implements    complicated file system semantics. 
  2509.  
  2510.    For example, some operating systems allow removal of open    files.  A process can open a file and, while it is open,    remove it from the directory. The file can be read and 
  2511.  
  2512.  
  2513.  
  2514. Callaghan, el al             Informational                     [Page 96] 
  2515.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  2516.  
  2517.     written as long as the process keeps it open, even though the    file has no name in the file system.  It is impossible for a    stateless server to implement these semantics.  The client    can do some tricks such as renaming the file on remove (to a    hidden name), and only physically deleting it on close. The    NFS version 3 protocol provides sufficient functionality to    implement most file system semantics on a client. 
  2518.  
  2519.    Every NFS version 3 protocol client can also potentially be a    server, and remote and local mounted file systems can be    freely mixed. This leads to some problems when a client    travels down the directory tree of a remote file system and    reaches the mount point on the server for another remote file    system. Allowing the server to follow the second remote mount    would require loop detection, server lookup, and user    revalidation. Instead, both NFS version 2 protocol and NFS    version 3 protocol implementations do not typically let    clients cross a server's mount point. When a client does a    LOOKUP on a directory on which the server has mounted a file    system, the client sees the underlying directory instead of    the mounted directory. 
  2520.  
  2521.    For example, if a server has a file system called /usr and    mounts another file system on /usr/src, if a client mounts    /usr, it does not see the mounted version of /usr/src. A    client could do remote mounts that match the server's mount    points to maintain the server's view.  In this example, the    client would also have to mount /usr/src in addition to /usr,    even if they are from the same server. 
  2522.  
  2523. 4.3 Path name interpretation 
  2524.  
  2525.    There are a few complications to the rule that path names are    always parsed on the client. For example, symbolic links    could have different interpretations on different clients.    There is no answer to this problem in this specification. 
  2526.  
  2527.    Another common problem for non-UNIX implementations is the    special interpretation of the pathname, "..", to mean the    parent of a given directory. A future revision of the    protocol may use an explicit flag to indicate the parent    instead - however it is not a problem as many working    non-UNIX implementations exist. 
  2528.  
  2529.  
  2530.  
  2531.  
  2532.  
  2533.  
  2534.  
  2535.  Callaghan, el al             Informational                     [Page 97] 
  2536.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  2537.  
  2538.  4.4 Permission issues 
  2539.  
  2540.    The NFS version 3 protocol, strictly speaking, does not    define the permission checking used by servers. However, it    is expected that a server will do normal operating system    permission checking using AUTH_UNIX style authentication as    the basis of its protection mechanism, or another stronger    form of authentication such as AUTH_DES or AUTH_KERB. With    AUTH_UNIX authentication, the server gets the client's    effective uid, effective gid, and groups on each call and    uses them to check permission. These are the so-called UNIX    credentials. AUTH_DES and AUTH_KERB use a network name, or    netname, as the basis for identification (from which a UNIX    server derives the necessary standard UNIX credentials).    There are problems with this method that have been solved. 
  2541.  
  2542.    Using uid and gid implies that the client and server share    the same uid list. Every server and client pair must have the    same mapping from user to uid and from group to gid. Since    every client can also be a server, this tends to imply that    the whole network shares the same uid/gid space. If this is    not the case, then it usually falls upon the server to    perform some custom mapping of credentials from one    authentication domain into another. A discussion of    techniques for managing a shared user space or for providing    mechanisms for user ID mapping is beyond the scope of this    specification. 
  2543.  
  2544.    Another problem arises due to the usually stateful open    operation.  Most operating systems check permission at open    time, and then check that the file is open on each read and    write request. With stateless servers, the server cannot    detect that the file is open and must do permission checking    on each read and write call. UNIX client semantics of access    permission checking on open can be provided with the ACCESS    procedure call in this revision, which allows a client to    explicitly check access permissions without resorting to    trying the operation. On a local file system, a user can open    a file and then change the permissions so that no one is    allowed to touch it, but will still be able to write to the    file because it is open. On a remote file system, by    contrast, the write would fail. To get around this problem,    the server's permission checking algorithm should allow the    owner of a file to access it regardless of the permission    setting. This is needed in a practical NFS version 3 protocol    server implementation, but it does depart from correct local    file system semantics. This should not affect the return    result of access permissions as returned by the ACCESS 
  2545.  
  2546.  
  2547.  
  2548. Callaghan, el al             Informational                     [Page 98] 
  2549.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  2550.  
  2551.     procedure, however. 
  2552.  
  2553.    A similar problem has to do with paging in an executable    program over the network. The operating system usually checks    for execute permission before opening a file for demand    paging, and then reads blocks from the open file. In a local    UNIX file system, an executable file does not need read    permission to execute (pagein). An NFS version 3 protocol    server can not tell the difference between a normal file read    (where the read permission bit is meaningful) and a demand    pagein read (where the server should allow access to the    executable file if the execute bit is set for that user or    group or public). To make this work, the server allows    reading of files if the uid given in the call has either    execute or read permission on the file, through ownership,    group membership or public access. Again, this departs from    correct local file system semantics. 
  2554.  
  2555.    In most operating systems, a particular user (on UNIX, the    uid 0) has access to all files, no matter what permission and    ownership they have. This superuser permission may not be    allowed on the server, since anyone who can become superuser    on their client could gain access to all remote files. A UNIX    server by default maps uid 0 to a distinguished value    (UID_NOBODY), as well as mapping the groups list, before    doing its access checking. A server implementation may    provide a mechanism to change this mapping. This works except    for NFS version 3 protocol root file systems (required for    diskless NFS version 3 protocol client support), where    superuser access cannot be avoided.  Export options are used,    on the server, to restrict the set of clients allowed    superuser access. 
  2556.  
  2557. 4.5 Duplicate request cache 
  2558.  
  2559.    The typical NFS version 3 protocol failure recovery model    uses client time-out and retry to handle server crashes,    network partitions, and lost server replies. A retried    request is called a duplicate of the original. 
  2560.  
  2561.    When used in a file server context, the term idempotent can    be used to distinguish between operation types. An idempotent    request is one that a server can perform more than once with    equivalent results (though it may in fact change, as a side    effect, the access time on a file, say for READ). Some NFS    operations are obviously non-idempotent. They cannot be    reprocessed without special attention simply because they may    fail if tried a second time. The CREATE request, for example, 
  2562.  
  2563.  
  2564.  
  2565. Callaghan, el al             Informational                     [Page 99] 
  2566.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  2567.  
  2568.     can be used to create a file for which the owner does not    have write permission. A duplicate of this request cannot    succeed if the original succeeded. Likewise, a file can be    removed only once. 
  2569.  
  2570.    The side effects caused by performing a duplicate    non-idempotent request can be destructive (for example, a    truncate operation causing lost writes). The combination of a    stateless design with the common choice of an unreliable    network transport (UDP) implies the possibility of    destructive replays of non-idempotent requests. Though to be    more accurate, it is the inherent stateless design of the NFS    version 3 protocol on top of an unreliable RPC mechanism that    yields the possibility of destructive replays of    non-idempotent requests, since even in an implementation of    the NFS version 3 protocol over a reliable    connection-oriented transport, a connection break with    automatic reestablishment requires duplicate request    processing (the client will retransmit the request, and the    server needs to deal with a potential duplicate    non-idempotent request). 
  2571.  
  2572.    Most NFS version 3 protocol server implementations use a    cache of recent requests (called the duplicate request cache)    for the processing of duplicate non-idempotent requests. The    duplicate request cache provides a short-term memory    mechanism in which the original completion status of a    request is remembered and the operation attempted only once.    If a duplicate copy of this request is received, then the    original completion status is returned. 
  2573.  
  2574.    The duplicate-request cache mechanism has been useful in    reducing destructive side effects caused by duplicate NFS    version 3 protocol requests. This mechanism, however, does    not guarantee against these destructive side effects in all    failure modes. Most servers store the duplicate request cache    in RAM, so the contents are lost if the server crashes.  The    exception to this may possibly occur in a redundant server    approach to high availability, where the file system itself    may be used to share the duplicate request cache state. Even    if the cache survives server reboots (or failovers in the    high availability case), its effectiveness is a function of    its size. A network partition can cause a cache entry to be    reused before a client receives a reply for the corresponding    request. If this happens, the duplicate request will be    processed as a new one, possibly with destructive side    effects. 
  2575.  
  2576.  
  2577.  
  2578.  Callaghan, el al             Informational                    [Page 100] 
  2579.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  2580.  
  2581.     A good description of the implementation and use of a    duplicate request cache can be found in [Juszczak]. 
  2582.  
  2583. 4.6 File name component handling 
  2584.  
  2585.    Server implementations of NFS version 3 protocol will    frequently impose restrictions on the names which can be    created. Many servers will also forbid the use of names that    contain certain characters, such as the path component    separator used by the server operating system. For example,    the UFS file system will reject a name which contains "/",    while "." and ".." are distinguished in UFS, and may not be    specified as the name when creating a file system object.    The exact error status values return for these errors is    specified in the description of each procedure argument. The    values (which conform to NFS version 2 protocol server    practice) are not necessarily obvious, nor are they    consistent from one procedure to the next. 
  2586.  
  2587. 4.7 Synchronous modifying operations 
  2588.  
  2589.    Data-modifying operations in the NFS version 3 protocol are    synchronous. When a procedure returns to the client, the    client can assume that the operation has completed and any    data associated with the request is now on stable storage. 
  2590.  
  2591. 4.8 Stable storage 
  2592.  
  2593.    NFS version 3 protocol servers must be able to recover    without data loss from multiple power failures (including    cascading power failures, that is, several power failures in    quick succession), operating system failures, and hardware    failure of components other than the storage medium itself    (for example, disk, nonvolatile RAM). 
  2594.  
  2595.    Some examples of stable storage that are allowable for an NFS    server include: 
  2596.  
  2597.    1. Media commit of data, that is, the modified data has       been successfully written to the disk media, for example,       the disk platter. 
  2598.  
  2599.    2. An immediate reply disk drive with battery-backed       on-drive intermediate storage or uninterruptible power       system (UPS). 
  2600.  
  2601.    3. Server commit of data with battery-backed intermediate       storage and recovery software. 
  2602.  
  2603.  
  2604.  
  2605. Callaghan, el al             Informational                    [Page 101] 
  2606.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  2607.  
  2608.     4. Cache commit with uninterruptible power system (UPS) and       recovery software. 
  2609.  
  2610.    Conversely, the following are not examples of stable    storage: 
  2611.  
  2612.    1. An immediate reply disk drive without battery-backed       on-drive intermediate storage or uninterruptible power       system (UPS). 
  2613.  
  2614.    2. Cache commit without both uninterruptible power system       (UPS) and recovery software. 
  2615.  
  2616.    The only exception to this (introduced in this protocol    revision) is as described under the WRITE procedure on the    handling of the stable bit, and the use of the COMMIT    procedure.  It is the use of the synchronous COMMIT procedure    that provides the necessary semantic support in the NFS    version 3 protocol. 
  2617.  
  2618. 4.9 Lookups and name resolution 
  2619.  
  2620.    A common objection to the NFS version 3 protocol is the    philosophy of component-by-component LOOKUP by the client in    resolving a name. The objection is that this is inefficient,    as latencies for component-by-component LOOKUP would be    unbearable. 
  2621.  
  2622.    Implementation practice solves this issue. A name cache,    providing component to file-handle mapping, is kept on the    client to short circuit actual LOOKUP invocations over the    wire.  The cache is subject to cache timeout parameters that    bound attributes. 
  2623.  
  2624. 4.10 Adaptive retransmission 
  2625.  
  2626.    Most client implementations use either an exponential    back-off strategy to some maximum retransmission value, or a    more adaptive strategy that attempts congestion avoidance.    Congestion avoidance schemes in NFS request retransmission    are modelled on the work presented in [Jacobson]. [Nowicki]    and [Macklem] describe congestion avoidance schemes to be    applied to the NFS protocol over UDP. 
  2627.  
  2628. 4.11 Caching policies 
  2629.  
  2630.    The NFS version 3 protocol does not define a policy for    caching on the client or server. In particular, there is no 
  2631.  
  2632.  
  2633.  
  2634. Callaghan, el al             Informational                    [Page 102] 
  2635.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  2636.  
  2637.     support for strict cache consistency between a client and    server, nor between different clients. See [Kazar] for a    discussion of the issues of cache synchronization and    mechanisms in several distributed file systems. 
  2638.  
  2639. 4.12 Stable versus unstable writes 
  2640.  
  2641.    The setting of the stable field in the WRITE arguments, that    is whether or not to do asynchronous WRITE requests, is    straightforward on a UNIX client. If the NFS version 3    protocol client receives a write request that is not marked    as being asynchronous, it should generate the RPC with stable    set to TRUE. If the request is marked as being asynchronous,    the RPC should be generated with stable set to FALSE. If the    response comes back with the committed field set to TRUE, the    client should just mark the write request as done and no    further action is required. If committed is set to FALSE,    indicating that the buffer was not synchronized with the    server's disk, the client will need to mark the buffer in    some way which indicates that a copy of the buffer lives on    the server and that a new copy does not need to be sent to    the server, but that a commit is required. 
  2642.  
  2643.    Note that this algorithm introduces a new state for buffers,    thus there are now three states for buffers. The three states    are dirty, done but needs to be committed, and done. This    extra state on the client will likely require modifications    to the system outside of the NFS version 3 protocol client. 
  2644.  
  2645.    One proposal that was rejected was the addition of a boolean    commit argument to the WRITE operation. It would be used to    indicate whether the server should do a full file commit    after doing the write. This seems as if it could be useful if    the client knew that it was doing the last write on the file.    It is difficult to see how this could be used, given existing    client architectures though. 
  2646.  
  2647.    The asynchronous write opens up the window of problems    associated with write sharing. For example: client A writes    some data asynchronously. Client A is still holding the    buffers cached, waiting to commit them later. Client B reads    the modified data and writes it back to the server. The    server then crashes. When it comes back up, client A issues a    COMMIT operation which returns with a different cookie as    well as changed attributes. In this case, the correct action    may or may not be to retransmit the cached buffers.    Unfortunately, client A can't tell for sure, so it will need    to retransmit the buffers, thus overwriting the changes from 
  2648.  
  2649.  
  2650.  
  2651. Callaghan, el al             Informational                    [Page 103] 
  2652.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  2653.  
  2654.     client B.  Fortunately, write sharing is rare and the    solution matches the current write sharing situation. Without    using locking for synchronization, the behaviour will be    indeterminate. 
  2655.  
  2656.    In a high availability (redundant system) server    implementation, two cases exist which relate to the verf    changing.  If the high availability server implementation    does not use a shared-memory scheme, then the verf should    change on failover, since the unsynchronized data is not    available to the second processor and there is no guarantee    that the system which had the data cached was able to flush    it to stable storage before going down. The client will need    to retransmit the data to be safe. In a shared-memory high    availability server implementation, the verf would not need    to change because the server would still have the cached data    available to it to be flushed. The exact policy regarding the    verf in a shared memory high availability implementation,    however, is up to the server implementor. 
  2657.  
  2658. 4.13 32 bit clients/servers and 64 bit clients/servers 
  2659.  
  2660.    The 64 bit nature of the NFS version 3 protocol introduces    several compatibility problems. The most notable two are    mismatched clients and servers, that is, a 32 bit client and    a 64 bit server or a 64 bit client and a 32 bit server. 
  2661.  
  2662.    The problems of a 64 bit client and a 32 bit server are easy    to handle. The client will never encounter a file that it can    not handle. If it sends a request to the server that the    server can not handle, the server should reject the request    with an appropriate error. 
  2663.  
  2664.    The problems of a 32 bit client and a 64 bit server are much    harder to handle. In this situation, the server does not have    a problem because it can handle anything that the client can    generate. However, the client may encounter a file that it    can not handle. The client will not be able to handle a file    whose size can not be expressed in 32 bits. Thus, the client    will not be able to properly decode the size of the file into    its local attributes structure. Also, a file can grow beyond    the limit of the client while the client is accessing the    file. 
  2665.  
  2666.    The solutions to these problems are left up to the individual    implementor. However, there are two common approaches used to    resolve this situation. The implementor can choose between    them or even can invent a new solution altogether. 
  2667.  
  2668.  
  2669.  
  2670. Callaghan, el al             Informational                    [Page 104] 
  2671.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  2672.  
  2673.     The most common solution is for the client to deny access to    any file whose size can not be expressed in 32 bits. This is    probably the safest, but does introduce some strange    semantics when the file grows beyond the limit of the client    while it is being access by that client. The file becomes    inaccessible even while it is being accessed. 
  2674.  
  2675.    The second solution is for the client to map any size greater    than it can handle to the maximum size that it can handle.    Effectively, it is lying to the application program. This    allows the application access as much of the file as possible    given the 32 bit offset restriction. This eliminates the    strange semantic of the file effectively disappearing after    it has been accessed, but does introduce other problems. The    client will not be able to access the entire file. 
  2676.  
  2677.    Currently, the first solution is the recommended solution.    However, client implementors are encouraged to do the best    that they can to reduce the effects of this situation. 
  2678.  
  2679.  
  2680.  
  2681.  
  2682.  
  2683.  
  2684.  
  2685.  
  2686.  
  2687.  
  2688.  
  2689.  
  2690.  
  2691.  
  2692.  
  2693.  
  2694.  
  2695.  
  2696.  
  2697.  
  2698.  
  2699.  
  2700.  
  2701.  
  2702.  
  2703.  
  2704.  
  2705.  
  2706.  
  2707.  
  2708.  
  2709.  Callaghan, el al             Informational                    [Page 105] 
  2710.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  2711.  
  2712.  5.0 Appendix I: Mount protocol 
  2713.  
  2714.    The changes from the NFS version 2 protocol to the NFS version 3    protocol have required some changes to be made in the MOUNT    protocol.  To meet the needs of the NFS version 3 protocol, a    new version of the MOUNT protocol has been defined. This new    protocol satisfies the requirements of the NFS version 3    protocol and addresses several other current market    requirements. 
  2715.  
  2716. 5.1 RPC Information 
  2717.  
  2718. 5.1.1 Authentication 
  2719.  
  2720.    The MOUNT service uses AUTH_NONE in the NULL procedure.    AUTH_UNIX, AUTH_SHORT, AUTH_DES, or AUTH_KERB are used for all    other procedures.  Other authentication types may be supported    in the future. 
  2721.  
  2722. 5.1.2 Constants 
  2723.  
  2724.    These are the RPC constants needed to call the MOUNT service.    They are given in decimal. 
  2725.  
  2726.       PROGRAM  100005       VERSION  3 
  2727.  
  2728. 5.1.3 Transport address 
  2729.  
  2730.    The MOUNT service is normally supported over the TCP and UDP    protocols. The rpcbind daemon should be queried for the correct    transport address. 
  2731.  
  2732. 5.1.4 Sizes 
  2733.  
  2734.    const MNTPATHLEN = 1024;  /* Maximum bytes in a path name */    const MNTNAMLEN  = 255;   /* Maximum bytes in a name */    const FHSIZE3    = 64;    /* Maximum bytes in a V3 file handle */ 
  2735.  
  2736. 5.1.5 Basic Data Types 
  2737.  
  2738.    typedef opaque fhandle3<FHSIZE3>;    typedef string dirpath<MNTPATHLEN>;    typedef string name<MNTNAMLEN>; 
  2739.  
  2740.  
  2741.  
  2742.  
  2743.  
  2744.  
  2745.  
  2746. Callaghan, el al             Informational                    [Page 106] 
  2747.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  2748.  
  2749.     enum mountstat3 {       MNT3_OK = 0,                 /* no error */       MNT3ERR_PERM = 1,            /* Not owner */       MNT3ERR_NOENT = 2,           /* No such file or directory */       MNT3ERR_IO = 5,              /* I/O error */       MNT3ERR_ACCES = 13,          /* Permission denied */       MNT3ERR_NOTDIR = 20,         /* Not a directory */       MNT3ERR_INVAL = 22,          /* Invalid argument */       MNT3ERR_NAMETOOLONG = 63,    /* Filename too long */       MNT3ERR_NOTSUPP = 10004,     /* Operation not supported */       MNT3ERR_SERVERFAULT = 10006  /* A failure on the server */    }; 
  2750.  
  2751. 5.2 Server Procedures 
  2752.  
  2753.    The following sections define the RPC procedures  supplied by a    MOUNT version 3 protocol server. The RPC procedure number is    given at the top of the page with the name and version. The    SYNOPSIS provides the name of the procedure, the list of the    names of the arguments, the list of the names of the results,    followed by the XDR argument declarations and results    declarations. The information in the SYNOPSIS is specified in    RPC Data Description Language as defined in [RFC1014]. The    DESCRIPTION section tells what the procedure is expected to do    and how its arguments and results are used. The ERRORS section    lists the errors returned for specific types of failures. The    IMPLEMENTATION field describes how the procedure is expected to    work and how it should be used by clients. 
  2754.  
  2755.       program MOUNT_PROGRAM {          version MOUNT_V3 {             void      MOUNTPROC3_NULL(void)    = 0;             mountres3 MOUNTPROC3_MNT(dirpath)  = 1;             mountlist MOUNTPROC3_DUMP(void)    = 2;             void      MOUNTPROC3_UMNT(dirpath) = 3;             void      MOUNTPROC3_UMNTALL(void) = 4;             exports   MOUNTPROC3_EXPORT(void)  = 5;          } = 3;       } = 100005; 
  2756.  
  2757.  
  2758.  
  2759.  
  2760.  
  2761.  
  2762.  
  2763.  
  2764.  
  2765.  
  2766.  
  2767.  Callaghan, el al             Informational                    [Page 107] 
  2768.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  2769.  
  2770.  5.2.0 Procedure 0: Null - Do nothing 
  2771.  
  2772.    SYNOPSIS 
  2773.  
  2774.       void MOUNTPROC3_NULL(void) = 0; 
  2775.  
  2776.    DESCRIPTION 
  2777.  
  2778.       Procedure NULL does not do any work. It is made available       to allow server response testing and timing. 
  2779.  
  2780.    IMPLEMENTATION 
  2781.  
  2782.       It is important that this procedure do no work at all so       that it can be used to measure the overhead of processing       a service request. By convention, the NULL procedure       should never require any authentication. A server may       choose to ignore this convention, in a more secure       implementation, where responding to the NULL procedure       call acknowledges the existence of a resource to an       unauthenticated client. 
  2783.  
  2784.    ERRORS 
  2785.  
  2786.       Since the NULL procedure takes no MOUNT protocol arguments       and returns no MOUNT protocol response, it can not return       a MOUNT protocol error. However, it is possible that some       server implementations may return RPC errors based on       security and authentication requirements. 
  2787.  
  2788.  
  2789.  
  2790.  
  2791.  
  2792.  
  2793.  
  2794.  
  2795.  
  2796.  
  2797.  
  2798.  
  2799.  
  2800.  
  2801.  
  2802.  
  2803.  
  2804.  
  2805.  
  2806.  
  2807.  
  2808.  Callaghan, el al             Informational                    [Page 108] 
  2809.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  2810.  
  2811.  5.2.1 Procedure 1: MNT - Add mount entry 
  2812.  
  2813.    SYNOPSIS 
  2814.  
  2815.       mountres3 MOUNTPROC3_MNT(dirpath) = 1; 
  2816.  
  2817.       struct mountres3_ok {            fhandle3   fhandle;            int        auth_flavors<>;       }; 
  2818.  
  2819.       union mountres3 switch (mountstat3 fhs_status) {       case MNT_OK:            mountres3_ok  mountinfo;       default:            void;       }; 
  2820.  
  2821.    DESCRIPTION 
  2822.  
  2823.       Procedure MNT maps a pathname on the server to a file       handle.  The pathname is an ASCII string that describes a       directory on the server. If the call is successful       (MNT3_OK), the server returns an NFS version 3 protocol       file handle and a vector of RPC authentication flavors       that are supported with the client's use of the file       handle (or any file handles derived from it).  The       authentication flavors are defined in Section 7.2 and       section 9 of [RFC1057]. 
  2824.  
  2825.    IMPLEMENTATION 
  2826.  
  2827.       If mountres3.fhs_status is MNT3_OK, then       mountres3.mountinfo contains the file handle for the       directory and a list of acceptable authentication       flavors.  This file handle may only be used in the NFS       version 3 protocol.  This procedure also results in the       server adding a new entry to its mount list recording that       this client has mounted the directory. AUTH_UNIX       authentication or better is required. 
  2828.  
  2829.    ERRORS 
  2830.  
  2831.       MNT3ERR_NOENT       MNT3ERR_IO       MNT3ERR_ACCES       MNT3ERR_NOTDIR       MNT3ERR_NAMETOOLONG 
  2832.  
  2833.  
  2834.  
  2835. Callaghan, el al             Informational                    [Page 109] 
  2836.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  2837.  
  2838.  5.2.2 Procedure 2: DUMP - Return mount entries 
  2839.  
  2840.    SYNOPSIS 
  2841.  
  2842.       mountlist MOUNTPROC3_DUMP(void) = 2; 
  2843.  
  2844.        typedef struct mountbody *mountlist; 
  2845.  
  2846.       struct mountbody {            name       ml_hostname;            dirpath    ml_directory;            mountlist  ml_next;       }; 
  2847.  
  2848.    DESCRIPTION 
  2849.  
  2850.       Procedure DUMP returns the list of remotely mounted file       systems. The mountlist contains one entry for each client       host name and directory pair. 
  2851.  
  2852.    IMPLEMENTATION 
  2853.  
  2854.       This list is derived from a list maintained on the server       of clients that have requested file handles with the MNT       procedure.  Entries are removed from this list only when a       client calls the UMNT or UMNTALL procedure. Entries may       become stale if a client crashes and does not issue either       UMNT calls for all of the file systems that it had       previously mounted or a UMNTALL to remove all entries that       existed for it on the server. 
  2855.  
  2856.    ERRORS 
  2857.  
  2858.       There are no MOUNT protocol errors which can be returned       from this procedure. However, RPC errors may be returned       for authentication or other RPC failures. 
  2859.  
  2860.  
  2861.  
  2862.  
  2863.  
  2864.  
  2865.  
  2866.  
  2867.  
  2868.  
  2869.  
  2870.  
  2871.  
  2872.  Callaghan, el al             Informational                    [Page 110] 
  2873.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  2874.  
  2875.  5.2.3 Procedure 3: UMNT - Remove mount entry 
  2876.  
  2877.    SYNOPSIS 
  2878.  
  2879.       void MOUNTPROC3_UMNT(dirpath) = 3; 
  2880.  
  2881.    DESCRIPTION 
  2882.  
  2883.       Procedure UMNT removes the mount list entry for the       directory that was previously the subject of a MNT call       from this client.  AUTH_UNIX authentication or better is       required.     IMPLEMENTATION 
  2884.  
  2885.       Typically, server implementations have maintained a list       of clients which have file systems mounted. In the past,       this list has been used to inform clients that the server       was going to be shutdown. 
  2886.  
  2887.    ERRORS 
  2888.  
  2889.       There are no MOUNT protocol errors which can be returned       from this procedure. However, RPC errors may be returned       for authentication or other RPC failures. 
  2890.  
  2891.  
  2892.  
  2893.  
  2894.  
  2895.  
  2896.  
  2897.  
  2898.  
  2899.  
  2900.  
  2901.  
  2902.  
  2903.  
  2904.  
  2905.  
  2906.  
  2907.  
  2908.  
  2909.  
  2910.  
  2911.  
  2912.  
  2913.  
  2914.  
  2915.  Callaghan, el al             Informational                    [Page 111] 
  2916.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  2917.  
  2918.  5.2.4 Procedure 4: UMNTALL - Remove all mount entries 
  2919.  
  2920.    SYNOPSIS 
  2921.  
  2922.       void MOUNTPROC3_UMNTALL(void) = 4; 
  2923.  
  2924.    DESCRIPTION 
  2925.  
  2926.       Procedure UMNTALL removes all of the mount entries for       this client previously recorded by calls to MNT. AUTH_UNIX       authentication or better is required. 
  2927.  
  2928.    IMPLEMENTATION 
  2929.  
  2930.       This procedure should be used by clients when they are       recovering after a system shutdown. If the client could       not successfully unmount all of its file systems before       being shutdown or the client crashed because of a software       or hardware problem, there may be servers which still have       mount entries for this client. This is an easy way for the       client to inform all servers at once that it does not have       any mounted file systems.  However, since this procedure       is generally implemented using broadcast RPC, it is only       of limited usefullness. 
  2931.  
  2932.    ERRORS 
  2933.  
  2934.       There are no MOUNT protocol errors which can be returned       from this procedure. However, RPC errors may be returned       for authentication or other RPC failures. 
  2935.  
  2936.  
  2937.  
  2938.  
  2939.  
  2940.  
  2941.  
  2942.  
  2943.  
  2944.  
  2945.  
  2946.  
  2947.  
  2948.  
  2949.  
  2950.  
  2951.  
  2952.  
  2953.  
  2954.  
  2955.  
  2956. Callaghan, el al             Informational                    [Page 112] 
  2957.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  2958.  
  2959.  5.2.5 Procedure 5: EXPORT - Return export list 
  2960.  
  2961.    SYNOPSIS 
  2962.  
  2963.       exports MOUNTPROC3_EXPORT(void) = 5; 
  2964.  
  2965.       typedef struct groupnode *groups; 
  2966.  
  2967.       struct groupnode {            name     gr_name;            groups   gr_next;       }; 
  2968.  
  2969.       typedef struct exportnode *exports; 
  2970.  
  2971.       struct exportnode {            dirpath  ex_dir;            groups   ex_groups;            exports  ex_next;       }; 
  2972.  
  2973.    DESCRIPTION 
  2974.  
  2975.       Procedure EXPORT returns a list of all the exported file       systems and which clients are allowed to mount each one.       The names in the group list are implementation-specific       and cannot be directly interpreted by clients. These names       can represent hosts or groups of hosts. 
  2976.  
  2977.    IMPLEMENTATION 
  2978.  
  2979.       This procedure generally returns the contents of a list of       shared or exported file systems. These are the file       systems which are made available to NFS version 3 protocol       clients. 
  2980.  
  2981.    ERRORS 
  2982.  
  2983.       There are no MOUNT protocol errors which can be returned       from this procedure. However, RPC errors may be returned       for authentication or other RPC failures. 
  2984.  
  2985.  
  2986.  
  2987.  
  2988.  
  2989.  
  2990.  
  2991.  
  2992.  
  2993.  Callaghan, el al             Informational                    [Page 113] 
  2994.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  2995.  
  2996.  6.0 Appendix II: Lock manager protocol 
  2997.  
  2998.    Because the NFS version 2 protocol as well as the NFS version 3    protocol is stateless, an additional Network Lock Manager (NLM)    protocol is required to support locking of NFS-mounted files.    The NLM version 3 protocol, which is used with the NFS version 2    protocol, is documented in [X/OpenNFS]. 
  2999.  
  3000.    Some of the changes in the NFS version 3 protocol require a    new version of the NLM protocol. This new protocol is the NLM    version 4 protocol. The following table summarizes the    correspondence between versions of the NFS protocol and NLM    protocol. 
  3001.  
  3002.        NFS and NLM protocol compatibility 
  3003.  
  3004.                +---------+---------+                |   NFS   |   NLM   |                | Version | Version |                +===================+                |    2    |   1,3   |                +---------+---------+                |    3    |    4    |                +---------+---------+ 
  3005.  
  3006.    This appendix only discusses the differences between the NLM    version 3 protocol and the NLM version 4 protocol.  As in the    NFS version 3 protocol, almost all the names in the NLM version    4 protocol have been changed to include a version number. This    appendix does not discuss changes that consist solely of a name    change. 
  3007.  
  3008. 6.1 RPC Information 
  3009.  
  3010. 6.1.1 Authentication 
  3011.  
  3012.    The NLM service uses AUTH_NONE in the NULL procedure.    AUTH_UNIX, AUTH_SHORT, AUTH_DES, and AUTH_KERB are used for    all other procedures. Other authentication types may be    supported in the future. 
  3013.  
  3014. 6.1.2 Constants 
  3015.  
  3016.    These are the RPC constants needed to call the NLM service.    They are given in decimal. 
  3017.  
  3018.       PROGRAM    100021       VERSION    4 
  3019.  
  3020.  
  3021.  
  3022. Callaghan, el al             Informational                    [Page 114] 
  3023.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  3024.  
  3025.  6.1.3 Transport Address 
  3026.  
  3027.    The NLM service is normally supported over the TCP and UDP    protocols.  The rpcbind daemon should be queried for the    correct transport address. 
  3028.  
  3029. 6.1.4 Basic Data Types 
  3030.  
  3031.    uint64       typedef unsigned hyper uint64; 
  3032.  
  3033.    int64       typedef hyper int64; 
  3034.  
  3035.    uint32       typedef unsigned long uint32; 
  3036.  
  3037.    int32       typedef long int32; 
  3038.  
  3039.    These types are new for the NLM version 4 protocol. They are    the same as in the NFS version 3 protocol. 
  3040.  
  3041.    nlm4_stats 
  3042.  
  3043.       enum nlm4_stats {          NLM4_GRANTED = 0,          NLM4_DENIED = 1,          NLM4_DENIED_NOLOCKS = 2,          NLM4_BLOCKED = 3,          NLM4_DENIED_GRACE_PERIOD = 4,          NLM4_DEADLCK = 5,          NLM4_ROFS = 6,          NLM4_STALE_FH = 7,          NLM4_FBIG = 8,          NLM4_FAILED = 9       }; 
  3044.  
  3045.    Nlm4_stats indicates the success or failure of a call. This    version contains several new error codes, so that clients can    provide more precise failure information to applications. 
  3046.  
  3047.    NLM4_GRANTED       The call completed successfully. 
  3048.  
  3049.    NLM4_DENIED       The call failed. For attempts to set a lock, this status       implies that if the client retries the call later, it may 
  3050.  
  3051.  
  3052.  
  3053. Callaghan, el al             Informational                    [Page 115] 
  3054.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  3055.  
  3056.        succeed. 
  3057.  
  3058.    NLM4_DENIED_NOLOCKS       The call failed because the server could not allocate the       necessary resources. 
  3059.  
  3060.    NLM4_BLOCKED       Indicates that a blocking request cannot be granted       immediately. The server will issue an NLMPROC4_GRANTED       callback to the client when the lock is granted. 
  3061.  
  3062.    NLM4_DENIED_GRACE_PERIOD       The call failed because the server is reestablishing old       locks after a reboot and is not yet ready to resume normal       service. 
  3063.  
  3064.    NLM4_DEADLCK       The request could not be granted and blocking would cause       a deadlock. 
  3065.  
  3066.    NLM4_ROFS       The call failed because the remote file system is       read-only.  For example, some server implementations might       not support exclusive locks on read-only file systems. 
  3067.  
  3068.    NLM4_STALE_FH       The call failed because it uses an invalid file handle.       This can happen if the file has been removed or if access       to the file has been revoked on the server. 
  3069.  
  3070.    NLM4_FBIG       The call failed because it specified a length or offset       that exceeds the range supported by the server. 
  3071.  
  3072.    NLM4_FAILED       The call failed for some reason not already listed.  The       client should take this status as a strong hint not to       retry the request. 
  3073.  
  3074.    nlm4_holder 
  3075.  
  3076.       struct nlm4_holder {            bool     exclusive;            int32    svid;            netobj   oh;            uint64   l_offset;            uint64   l_len;       }; 
  3077.  
  3078.  
  3079.  
  3080. Callaghan, el al             Informational                    [Page 116] 
  3081.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  3082.  
  3083.     This structure indicates the holder of a lock. The exclusive    field tells whether the holder has an exclusive lock or a    shared lock. The svid field identifies the process that is    holding the lock. The oh field is an opaque object that    identifies the host or process that is holding the lock. The    l_len and l_offset fields identify the region that is locked.    The only difference between the NLM version 3 protocol and    the NLM version 4 protocol is that in the NLM version 3    protocol, the l_len and l_offset fields are 32 bits wide,    while they are 64 bits wide in the NLM version 4 protocol. 
  3084.  
  3085.    nlm4_lock 
  3086.  
  3087.       struct nlm4_lock {            string   caller_name<LM_MAXSTRLEN>;            netobj   fh;            netobj   oh;            int32    svid;            uint64   l_offset;            uint64   l_len;       }; 
  3088.  
  3089.    This structure describes a lock request. The caller_name    field identifies the host that is making the request. The fh    field identifies the file to lock. The oh field is an opaque    object that identifies the host or process that is making the    request, and the svid field identifies the process that is    making the request.  The l_offset and l_len fields identify    the region of the file that the lock controls.  A l_len of 0    means "to end of file". 
  3090.  
  3091.    There are two differences between the NLM version 3 protocol    and the NLM version 4 protocol versions of this structure.    First, in the NLM version 3 protocol, the length and offset    are 32 bits wide, while they are 64 bits wide in the NLM    version 4 protocol.  Second, in the NLM version 3 protocol,    the file handle is a fixed-length NFS version 2 protocol file    handle, which is encoded as a byte count followed by a byte    array. In the NFS version 3 protocol, the file handle is    already variable-length, so it is copied directly into the fh    field.  That is, the first four bytes of the fh field are the    same as the byte count in an NFS version 3 protocol nfs_fh3.    The rest of the fh field contains the byte array from the NFS    version 3 protocol nfs_fh3. 
  3092.  
  3093.  
  3094.  
  3095.  
  3096.  
  3097.  
  3098.  
  3099. Callaghan, el al             Informational                    [Page 117] 
  3100.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  3101.  
  3102.     nlm4_share 
  3103.  
  3104.       struct nlm4_share {            string      caller_name<LM_MAXSTRLEN>;            netobj      fh;            netobj      oh;            fsh4_mode   mode;            fsh4_access access;       }; 
  3105.  
  3106.    This structure is used to support DOS file sharing. The    caller_name field identifies the host making the request.    The fh field identifies the file to be operated on. The oh    field is an opaque object that identifies the host or process    that is making the request. The mode and access fields    specify the file-sharing and access modes. The encoding of fh    is a byte count, followed by the file handle byte array. See    the description of nlm4_lock for more details. 
  3107.  
  3108. 6.2 NLM Procedures 
  3109.  
  3110.    The procedures in the NLM version 4 protocol are semantically    the same as those in the NLM version 3 protocol. The only    semantic difference is the addition of a NULL procedure that    can be used to test for server responsiveness.  The procedure    names with _MSG and _RES suffixes denote asynchronous    messages; for these the void response implies no reply.  A    syntactic change is that the procedures were renamed to avoid    name conflicts with the values of nlm4_stats. Thus the    procedure definition is as follows. 
  3111.  
  3112.       version NLM4_VERS {          void             NLMPROC4_NULL(void)                  = 0; 
  3113.  
  3114.          nlm4_testres             NLMPROC4_TEST(nlm4_testargs)         = 1; 
  3115.  
  3116.          nlm4_res             NLMPROC4_LOCK(nlm4_lockargs)         = 2; 
  3117.  
  3118.          nlm4_res             NLMPROC4_CANCEL(nlm4_cancargs)       = 3; 
  3119.  
  3120.          nlm4_res             NLMPROC4_UNLOCK(nlm4_unlockargs)     = 4; 
  3121.  
  3122.  
  3123.  
  3124.  
  3125.  
  3126. Callaghan, el al             Informational                    [Page 118] 
  3127.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  3128.  
  3129.           nlm4_res             NLMPROC4_GRANTED(nlm4_testargs)      = 5; 
  3130.  
  3131.          void             NLMPROC4_TEST_MSG(nlm4_testargs)     = 6; 
  3132.  
  3133.          void             NLMPROC4_LOCK_MSG(nlm4_lockargs)     = 7; 
  3134.  
  3135.          void             NLMPROC4_CANCEL_MSG(nlm4_cancargs)   = 8; 
  3136.  
  3137.          void             NLMPROC4_UNLOCK_MSG(nlm4_unlockargs) = 9; 
  3138.  
  3139.          void             NLMPROC4_GRANTED_MSG(nlm4_testargs) = 10; 
  3140.  
  3141.          void             NLMPROC4_TEST_RES(nlm4_testres)     = 11; 
  3142.  
  3143.          void             NLMPROC4_LOCK_RES(nlm4_res)         = 12; 
  3144.  
  3145.          void             NLMPROC4_CANCEL_RES(nlm4_res)       = 13; 
  3146.  
  3147.          void             NLMPROC4_UNLOCK_RES(nlm4_res)       = 14; 
  3148.  
  3149.          void             NLMPROC4_GRANTED_RES(nlm4_res)      = 15; 
  3150.  
  3151.          nlm4_shareres             NLMPROC4_SHARE(nlm4_shareargs)      = 20; 
  3152.  
  3153.          nlm4_shareres             NLMPROC4_UNSHARE(nlm4_shareargs)    = 21; 
  3154.  
  3155.          nlm4_res             NLMPROC4_NM_LOCK(nlm4_lockargs)     = 22; 
  3156.  
  3157.          void             NLMPROC4_FREE_ALL(nlm4_notify)      = 23; 
  3158.  
  3159.       } = 4; 
  3160.  
  3161.  
  3162.  
  3163.  
  3164.  
  3165. Callaghan, el al             Informational                    [Page 119] 
  3166.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  3167.  
  3168.  6.2.0 Procedure 0: NULL - Do nothing 
  3169.  
  3170.    SYNOPSIS 
  3171.  
  3172.       void NLMPROC4_NULL(void) = 0; 
  3173.  
  3174.    DESCRIPTION 
  3175.  
  3176.       The NULL procedure does no work. It is made available in       all RPC services to allow server response testing and       timing. 
  3177.  
  3178.    IMPLEMENTATION 
  3179.  
  3180.       It is important that this procedure do no work at all so       that it can be used to measure the overhead of processing       a service request. By convention, the NULL procedure       should never require any authentication. 
  3181.  
  3182.    ERRORS 
  3183.  
  3184.       It is possible that some server implementations may return       RPC errors based on security and authentication       requirements. 
  3185.  
  3186. 6.3 Implementation issues 
  3187.  
  3188. 6.3.1 64-bit offsets and lengths 
  3189.  
  3190.       Some NFS version 3 protocol servers can only support       requests where the file offset or length fits in 32 or       fewer bits.  For these servers, the lock manager will have       the same restriction.  If such a lock manager receives a       request that it cannot handle (because the offset or       length uses more than 32 bits), it should return the       error, NLM4_FBIG. 
  3191.  
  3192. 6.3.2 File handles 
  3193.  
  3194.       The change in the file handle format from the NFS version       2 protocol to the NFS version 3 protocol complicates the       lock manager. First, the lock manager needs some way to       tell when an NFS version 2 protocol file handle refers to       the same file as an NFS version 3 protocol file handle.       (This is assuming that the lock manager supports both NLM       version 3 protocol clients and NLM version 4 protocol       clients.) Second, if the lock manager runs the file handle       through a hashing function, the hashing function may need 
  3195.  
  3196.  
  3197.  
  3198. Callaghan, el al             Informational                    [Page 120] 
  3199.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  3200.  
  3201.        to be retuned to work with NFS version 3 protocol file       handles as well as NFS version 2 protocol file handles. 
  3202.  
  3203.  
  3204.  
  3205.  
  3206.  
  3207.  
  3208.  
  3209.  
  3210.  
  3211.  
  3212.  
  3213.  
  3214.  
  3215.  
  3216.  
  3217.  
  3218.  
  3219.  
  3220.  
  3221.  
  3222.  
  3223.  
  3224.  
  3225.  
  3226.  
  3227.  
  3228.  
  3229.  
  3230.  
  3231.  
  3232.  
  3233.  
  3234.  
  3235.  
  3236.  
  3237.  
  3238.  
  3239.  
  3240.  
  3241.  
  3242.  
  3243.  
  3244.  
  3245.  
  3246.  
  3247.  
  3248.  
  3249.  
  3250.  
  3251. Callaghan, el al             Informational                    [Page 121] 
  3252.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  3253.  
  3254.  7.0 Appendix III: Bibliography 
  3255.  
  3256. [Corbin]        Corbin, John, "The Art of Distributed                 Programming-Programming Techniques for Remote                 Procedure Calls." Springer-Verlag, New York, New                 York. 1991.  Basic description of RPC and XDR                 and how to program distributed applications                 using them. 
  3257.  
  3258. [Glover]        Glover, Fred, "TNFS Protocol Specification,"                 Trusted System Interest Group, Work in                 Progress. 
  3259.  
  3260. [Israel]        Israel, Robert K., Sandra Jett, James Pownell,                 George M. Ericson, "Eliminating Data Copies in                 UNIX-based NFS Servers," Uniforum Conference                 Proceedings, San Francisco, CA,                 February 27 - March 2, 1989.  Describes two                 methods for reducing data copies in NFS server                 code. 
  3261.  
  3262. [Jacobson]      Jacobson, V., "Congestion Control and                 Avoidance," Proc. ACM SIGCOMM `88, Stanford, CA,                 August 1988.  The paper describing improvements                 to TCP to allow use over Wide Area Networks and                 through gateways connecting networks of varying                 capacity. This work was a starting point for the                 NFS Dynamic Retransmission work. 
  3263.  
  3264. [Juszczak]      Juszczak, Chet, "Improving the Performance and                 Correctness of an NFS Server," USENIX Conference                 Proceedings, USENIX Association, Berkeley, CA,                 June 1990, pages 53-63.  Describes reply cache                 implementation that avoids work in the server by                 handling duplicate requests. More important,                 though listed as a side-effect, the reply cache                 aids in the avoidance of destructive                 non-idempotent operation re-application --                 improving correctness. 
  3265.  
  3266. [Kazar]         Kazar, Michael Leon, "Synchronization and Caching                 Issues in the Andrew File System," USENIX Conference                 Proceedings, USENIX Association, Berkeley, CA,                 Dallas Winter 1988, pages 27-36.  A description                 of the cache consistency scheme in AFS.                 Contrasted with other distributed file systems. 
  3267.  
  3268.  
  3269.  
  3270.  
  3271.  
  3272. Callaghan, el al             Informational                    [Page 122] 
  3273.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  3274.  
  3275.  [Macklem]       Macklem, Rick, "Lessons Learned Tuning the                 4.3BSD Reno Implementation of the NFS Protocol,"                 Winter USENIX Conference Proceedings, USENIX                 Association, Berkeley, CA, January 1991.                 Describes performance work in tuning the 4.3BSD                 Reno NFS implementation. Describes performance                 improvement (reduced CPU loading) through                 elimination of data copies. 
  3276.  
  3277. [Mogul]         Mogul, Jeffrey C., "A Recovery Protocol for Spritely                 NFS," USENIX File System Workshop Proceedings,                 Ann Arbor, MI, USENIX Association, Berkeley, CA,                 May 1992.  Second paper on Spritely NFS proposes                 a lease-based scheme for recovering state of                 consistency protocol. 
  3278.  
  3279. [Nowicki]       Nowicki, Bill, "Transport Issues in the Network                 File System," ACM SIGCOMM newsletter Computer                 Communication Review, April 1989.  A brief                 description of the basis for the dynamic                 retransmission work. 
  3280.  
  3281. [Pawlowski]     Pawlowski, Brian, Ron Hixon, Mark Stein, Joseph                 Tumminaro, "Network Computing in the UNIX and                 IBM Mainframe Environment," Uniforum `89 Conf.                 Proc., (1989) Description of an NFS server                 implementation for IBM's MVS operating system. 
  3282.  
  3283. [RFC1014]       Sun Microsystems, Inc., "XDR: External Data                 Representation Standard", RFC 1014,                 Sun Microsystems, Inc., June 1987.                 Specification for canonical format for data                 exchange, used with RPC. 
  3284.  
  3285. [RFC1057]       Sun Microsystems, Inc., "RPC: Remote Procedure                 Call Protocol Specification", RFC 1057,                 Sun Microsystems, Inc., June 1988.                 Remote procedure protocol specification. 
  3286.  
  3287. [RFC1094]       Sun Microsystems, Inc., "Network Filesystem                 Specification", RFC 1094, Sun Microsystems, Inc.,                 March 1989.  NFS version 2 protocol                 specification. 
  3288.  
  3289.  
  3290.  
  3291.  
  3292.  
  3293.  
  3294.  
  3295.  Callaghan, el al             Informational                    [Page 123] 
  3296.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  3297.  
  3298.  [Sandberg]      Sandberg, R., D. Goldberg, S. Kleiman, D. Walsh,                 B.  Lyon, "Design and Implementation of the Sun                 Network Filesystem," USENIX Conference                 Proceedings, USENIX Association, Berkeley, CA,                 Summer 1985.  The basic paper describing the                 SunOS implementation of the NFS version 2                 protocol, and discusses the goals, protocol                 specification and trade-offs. 
  3299.  
  3300. [Srinivasan]    Srinivasan, V., Jeffrey C. Mogul, "Spritely                 NFS:  Implementation and Performance of Cache                 Consistency Protocols", WRL Research Report                 89/5, Digital Equipment Corporation Western                 Research Laboratory, 100 Hamilton Ave., Palo                 Alto, CA, 94301, May 1989.  This paper analyzes                 the effect of applying a Sprite-like consistency                 protocol applied to standard NFS. The issues of                 recovery in a stateful environment are covered                 in [Mogul]. 
  3301.  
  3302. [X/OpenNFS]     X/Open Company, Ltd., X/Open CAE Specification:                 Protocols for X/Open Internetworking: XNFS,                 X/Open Company, Ltd., Apex Plaza, Forbury Road,                 Reading Berkshire, RG1 1AX, United Kingdom,                 1991.  This is an indispensable reference for                 NFS version 2 protocol and accompanying                 protocols, including the Lock Manager and the                 Portmapper. 
  3303.  
  3304. [X/OpenPCNFS]   X/Open Company, Ltd., X/Open CAE Specification:                 Protocols for X/Open Internetworking: (PC)NFS,                 Developer's Specification, X/Open Company, Ltd.,                 Apex Plaza, Forbury Road, Reading Berkshire, RG1                 1AX, United Kingdom, 1991.  This is an                 indispensable reference for NFS version 2                 protocol and accompanying protocols, including                 the Lock Manager and the Portmapper. 
  3305.  
  3306.  
  3307.  
  3308.  
  3309.  
  3310.  
  3311.  
  3312.  
  3313.  
  3314.  
  3315.  
  3316.  
  3317.  
  3318.  Callaghan, el al             Informational                    [Page 124] 
  3319.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  3320.  
  3321.  8. Security Considerations 
  3322.  
  3323.    Since sensitive file data may be transmitted or received    from a server by the NFS protocol, authentication, privacy,    and data integrity issues should be addressed by implementations    of this protocol. 
  3324.  
  3325.    As with the previous protocol revision (version 2), NFS    version 3 defers to the authentication provisions of the    supporting RPC protocol [RFC1057], and assumes that data    privacy and integrity are provided by underlying transport    layers as available in each implementation of the protocol.    See section 4.4 for a discussion relating to file access    permissions. 
  3326.  
  3327. 9. Acknowledgements 
  3328.  
  3329.    This description of the protocol is derived from an original    document written by Brian Pawlowski and revised by Peter    Staubach.  This protocol is the result of a co-operative    effort that comprises the contributions of Geoff Arnold,    Brent Callaghan, John Corbin, Fred Glover, Chet Juszczak,    Mike Eisler, John Gillono, Dave Hitz, Mike Kupfer, Rick    Macklem, Ron Minnich, Brian Pawlowski, David Robinson, Rusty    Sandberg, Craig Schamp, Spencer Shepler, Carl Smith, Mark    Stein, Peter Staubach, Tom Talpey, Rob Thurlow, and Mark    Wittle. 
  3330.  
  3331.  
  3332.  
  3333.  
  3334.  
  3335.  
  3336.  
  3337.  
  3338.  
  3339.  
  3340.  
  3341.  
  3342.  
  3343.  
  3344.  
  3345.  
  3346.  
  3347.  
  3348.  
  3349.  
  3350.  
  3351.  
  3352.  
  3353.  Callaghan, el al             Informational                    [Page 125] 
  3354.  RFC 1813                 NFS Version 3 Protocol                June 1995 
  3355.  
  3356.  10. Authors' Addresses 
  3357.  
  3358.    Address comments related to this protocol to: 
  3359.  
  3360.       nfs3@eng.sun.com 
  3361.  
  3362.     Brent Callaghan    Sun Microsystems, Inc.    2550 Garcia Avenue    Mailstop UMTV05-44    Mountain View, CA 94043-1100 
  3363.  
  3364.    Phone: 1-415-336-1051    Fax:   1-415-336-6015    EMail: brent.callaghan@eng.sun.com 
  3365.  
  3366.     Brian Pawlowski    Network Appliance Corp.    319 North Bernardo Ave.    Mountain View, CA 94043 
  3367.  
  3368.    Phone: 1-415-428-5136    Fax:   1-415-428-5151    EMail: beepy@netapp.com 
  3369.  
  3370.     Peter Staubach    Sun Microsystems, Inc.    2550 Garcia Avenue    Mailstop UMTV05-44    Mountain View, CA 94043-1100 
  3371.  
  3372.    Phone: 1-415-336-5615    Fax:   1-415-336-6015    EMail: peter.staubach@eng.sun.com 
  3373.  
  3374.  
  3375.  
  3376.  
  3377.  
  3378.  
  3379.  
  3380.  
  3381.  
  3382.  
  3383.  
  3384.  
  3385.  
  3386.  Callaghan, el al             Informational                    [Page 126] 
  3387.  
  3388.