As per Relevance of the word specification, we have this rfc below:
Network Working Group B.
Request for Comments: 2055 Sun Microsystems, Inc
Category: Informational October 1996
WebNFS Server
Status of this
This memo provides information for the Internet community. This
does not specify an Internet standard of any kind. Distribution
this memo is unlimited
This document describes the specifications for a server of
clients. WebNFS extends the semantics of versions 2 and 3 of the
protocols to allow clients to obtain filehandles more easily,
recourse to the portmap or MOUNT protocols. In removing the need
these protocols, WebNFS clients see benefits in faster response
requests, easy transit of firewalls and better server
This description is provided to facilitate compatible
of WebNFS servers
Table of
1. Introduction . . . . . . . . . . . . . . . . . . . . . . . 2
2. TCP vs UDP . . . . . . . . . . . . . . . . . . . . . . . 2
3. Well-known Port . . . . . . . . . . . . . . . . . . . . . 2
4. Server Port Monitoring . . . . . . . . . . . . . . . . . . 3
5. Public Filehandle . . . . . . . . . . . . . . . . . . . . 3
5.1 Version 2 Public Filehandle . . . . . . . . . . . . . . 3
5.2 Version 3 Public Filehandle . . . . . . . . . . . . . . 4
6. Multi-component Lookup . . . . . . . . . . . . . . . . . . 4
6.1 Canonical Path vs. Native Path . . . . . . . . . . . . . 5
6.2 Symbolic Links . . . . . . . . . . . . . . . . . . . . . 6
6.3 Export Spanning Pathnames . . . . . . . . . . . . . . . 6
7. Location of Public Filehandle . . . . . . . . . . . . . . 7
8. Index Files . . . . . . . . . . . . . . . . . . . . . . . 7
9. Bibliography . . . . . . . . . . . . . . . . . . . . . . . 8
10. Security Considerations . . . . . . . . . . . . . . . . . 9
11. Acknowledgements . . . . . . . . . . . . . . . . . . . . . 9
12. Author's Address . . . . . . . . . . . . . . . . . . . . . 10
Callaghan Informational [Page 1]
RFC 2055 WebNFS Server Specification October 1996
1.
The NFS protocol provides access to shared filesystems
networks. It is intended to be machine, operating system,
architecture, and transport independent. The protocol
exists in two versions: version 2 [RFC1094] and version 3 [RFC1813],
both built on Sun RPC [RFC1831] and its associated eXternal
Representation (XDR) [RFC1832]. This document assumes
familiarity with the NFS protocol and underlying RPC protocols
WebNFS servers implement semantic extensions to both versions of
NFS protocol to support a lightweight binding mechanism
conventional or web browser clients that need to communicate with
servers across the Internet. a WebNFS server supports the
filehandle and multi-component lookup features described herein,
well as meeting some additional requirements
For a description of WebNFS client requirements, read RFC 2054.
2. TCP vs
The NFS protocol is most well known for its use of UDP which
acceptably on local area networks. However, on wide area
with error prone, high-latency connections and bandwidth contention
TCP is well respected for its congestion control and superior
handling. A growing number of NFS implementations now support
NFS protocol over TCP connections
A WebNFS client will first attempt to connect to its server with
TCP connection. If the server refuses the connection, the
will attempt to use UDP. All WebNFS servers should support
use of TCP and must support UDP
3. Well-known
While Internet protocols are generally identified by registered
number assignments, RPC based protocols register a 32 bit
number and a dynamically assigned port with the portmap service
is registered on the well-known port 111. Since the NFS protocol
RPC-based, NFS servers register their port assignment with
portmap service
NFS servers are constrained by a requirement to re-register at
same port after a server crash and recovery so that clients
recover simply by retransmitting an RPC request until a response
received. This is simpler than the alternative of having the
repeatedly check with the portmap service for a new port assignment
NFS servers typically achieve this port invariance by registering
Callaghan Informational [Page 2]
RFC 2055 WebNFS Server Specification October 1996
constant port assignment, 2049, for both UDP and TCP
To avoid the overhead of contacting the server's portmap service,
to facilitate transit through packet filtering firewalls,
clients optimistically assume that WebNFS servers register on
2049. Most NFS servers use this port assignment already, so
client optimism is well justified
A WebNFS server must register on UDP port 2049 and TCP port 2049
TCP is supported
4. Server Port
Some NFS servers accept requests only from reserved UDP or TCP ports
i.e. port numbers below 1024. These "privileged" ports are
only to Unix processes with superuser permissions. Requests that
not originate from the range of reserved ports are rejected. This
optimistic way of preventing direct access to the server from
processes that may attempt to spoof AUTH_UNIX RPC credentials
Since WebNFS clients are not required to use reserved ports, a
server must not check the originating port for requests
filesystems made available to WebNFS clients
5. Public
The public filehandle is an NFS file handle with a reserved value
special semantics that allow an initial filehandle to be obtained.
WebNFS client can use the public filehandle as an initial
without using the MOUNT protocol. Since NFS version 2 and version 3
have different filehandle formats, the public filehandle is
differently for each
The public filehandle is a zero filehandle. For NFS version 2
is a filehandle with 32 zero octets. A version 3 public
has zero length
5.1 Version 2 Public
A version 2 filehandle is defined in RFC1094 as an opaque
occupying 32 octets. A version 2 public filehandle has a zero
each octet, i.e. all zeros
1 32
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Callaghan Informational [Page 3]
RFC 2055 WebNFS Server Specification October 1996
5.2 Version 3 Public
A version 3 filehandle is defined in RFC1813 as a variable
opaque value occupying up to 64 octets. The length of the
is indicated by an integer value contained in a 4 octet value
describes the number of valid octets that follow. A version 3
filehandle has a length of zero
+-+-+-+-+
| 0 |
+-+-+-+-+
6. Multi-component
Normally the NFS LOOKUP request (versions 2 or 3) takes a
file handle along with the name of a directory member, and
the filehandle of the directory member. If a client needs
evaluate a pathname that contains a sequence of components,
beginning with the directory file handle of the first component
must issue a series of LOOKUP requests one component at a time.
instance, evaluation of the Unix path "a/b/c" will generate
LOOKUP requests for each component of the pathname "a", "b", and "c".
A LOOKUP request that uses the public file handle can provide
pathname containing multiple components. The server is expected
evaluate the entire pathname and return a filehandle for the
component. The pathname syntax is assumed to be understood by
server, but the client must not make assumptions of the
syntax
A Unix server, for instance, uses a slash "/" character to
components in a Unix pathname
For example, rather than evaluate the path "a/b/c" as
LOOKUP FH=0x0 "a" --->
<--- FH=0x
LOOKUP FH=0x1 "b" --->
<--- FH=0x
LOOKUP FH=0x2 "c" --->
<--- FH=0x
Relative to the public filehandle these three LOOKUP requests can
replaced by a single multi-component lookup
LOOKUP FH=0x0 "a/b/c" --->
<--- FH=0x
Callaghan Informational [Page 4]
RFC 2055 WebNFS Server Specification October 1996
Multi-component lookup is supported only for LOOKUP requests
to the public filehandle
6.1 Canonical Path vs. Native
If the pathname in a multi-component LOOKUP request begins with
printable ASCII character, then it must be a canonical path.
canonical path is a hierarchically-related, slash-separated
of components, <directory>/<directory>/.../.
Occurrences of the "/" character within a component will be
using the escape code %2f. Non-printable ascii characters (
values in the range 00-1F and 7f hexadecimal) will also be
using the "%" character to introduce a two digit hexadecimal code
Occurrences of the "%" character that do not introduce an
character will themselves be encoded with %25.
If the first character of a canonical path is a slash, then
canonical path must be evaluated relative to the server's
directory. If the first character is not a slash, then the path
be evaluated relative to the directory with which the
filehandle is associated
Not all WebNFS servers can support arbitrary use of absolute paths
Clearly, the server cannot return a filehandle if the path
a file or directory that is not exported by the server. In addition
some servers will not return a filehandle if the path names a file
directory in an exported filesystem different from the one that
associated with the public filehandle
If the first character of the path is 0x80 (non-ascii) then
following character is the first in a native path. A native
conforms to the natural pathname syntax of the server. For example
Lookup for Canonical Path
LOOKUP FH=0x0 "/a/b/c
Lookup for Native Path
LOOKUP FH=0x0 0x80 "a:b:c
Other introductory characters in the range 0x81 - 0xff may be
in future specifications. If the server receives any character
this range that it does not understand then it must return an
to the client: NFSERR_IO for NFS V2, NFS3ERR_IO for NFS V3.
Callaghan Informational [Page 5]
RFC 2055 WebNFS Server Specification October 1996
6.2 Symbolic
Servers that support symbolic links may encounter pathname
that are symbolic links. The server is expected to evaluate
symbolic links as a part of the normal pathname evaluation process
This is a different semantic from that of conventional component-at
a-time pathname evaluation by NFS clients, where the client
expected to do the evaluation
However, if the final component is a symbolic link, the server
return its filehandle and let the client evaluate it
6.3 Export Spanning
The server may evaluate a pathname, either through a multi-
LOOKUP or as a symbolic link embedded in a pathname, that
a file or directory outside of the exported hierarchy
Clearly, if the destination of the path is not in an
filesystem, then the server must return an error to the client
Many NFS server implementations rely on the MOUNT protocol
checking access to exported filesystems and NFS server does no
checking. The NFS server assumes that the filehandle does
duty: identifying a file as well as being a security token.
WebNFS clients do not normally use the MOUNT protocol, a server
relies on MOUNT checking cannot automatically grant access to
exported filesystem at the destination of a spanning path.
servers must return an error
For example: the server exports two filesystems. One is
with the public filehandle
/export/this (public filehandle
/export/
The server receives a LOOKUP request with the public filehandle
identifies a file or directory in the other exported filesystem
LOOKUP 0x0 "../that/file
LOOKUP 0x0 "/export/that/file
Even though the pathname destination is in an exported filesystem
the server cannot return a filehandle without an assurance that
client's use of this filehandle will be authorized
Callaghan Informational [Page 6]
RFC 2055 WebNFS Server Specification October 1996
Servers that check client access to an export on every NFS
have more flexibility. These servers can return filehandles
paths that span exports since the client's use of the filehandle
the destination filesystem will be checked by the NFS server
7. Location of Public
A server administrator can associate the public filehandle with
file or directory. For instance, a WebNFS server administrator
attach the public filehandle to the root of an anonymous FTP archive
so that anonymous FTP pathnames could be used to identify files
the FTP hierarchy, e.g
# share -o ro,public /export/
On servers that support spanning paths, the public filehandle
not necessarily be attached to an exported directory, though
successful LOOKUP relative to the public filehandle must identify
file or directory that is exported
For instance, if an NFS server exports a directory "/export/foo"
the public filehandle is attached to the server's root directory
then a LOOKUP of "export/foo" relative to the public filehandle
return a valid file handle but a LOOKUP of "export" will return
access error since the server's "/export" directory is not exported
/ (public filehandle is here
/\
/ \
/ export (not exported
/ /\
/ / \
/ / foo (exported
LOOKUP 0x0 "export" (returns an error
LOOKUP 0x0 "export/foo" (returns an filehandle
8. Index
Most HTTP servers support the concept of an index file. If a
references a directory that contains an index file, then the
will return the contents of the index file rather than a
listing. For instance if a browser requests "a/b/c" then the
might return the contents of "a/b/c/index.html".
Callaghan Informational [Page 7]
RFC 2055 WebNFS Server Specification October 1996
A WebNFS server may choose to emulate this feature for the benefit
clients using the NFS protocol to browse a Web hierarchy.
receiving a multi-component lookup for a canonical path that names
directory, the server can check that directory for the presence of
index file. If the file exists then the server may choose to
the filehandle of the index file instead of the directory.
files are commonly called "index.html" though the name is
configurable
9.
[RFC1831] Srinivasan, R., "RPC: Remote Procedure
Protocol Specification Version 2", RFC 1831,
August 1995.
http://www.internic.net/rfc/rfc1831.
[RFC1832] Srinivasan, R., "XDR: External Data
Standard," RFC 1832, August 1995.
http://www.internic.net/rfc/rfc1832.
[RFC1833] Srinivasan, R., "Binding Protocols for ONC
Version 2", RFC 1833, August 1995.
http://www.internic.net/rfc/rfc1833.
[RFC1094] Sun Microsystems, Inc., "Network
Specification", RFC 1094, March 1989.
version 2 protocol specification
http://www.internic.net/rfc/rfc1094.
[RFC1813] Sun Microsystems, Inc., "NFS Version 3
Specification", RFC 1813, June 1995. NFS
3 protocol specification
http://www.internic.net/rfc/rfc1813.
[RFC2054] Callaghan, B., "WebNFS Client Specification",
RFC 2054, October 1996.
http://www.internic.net/rfc/rfc2054.
[Sandberg] Sandberg, R., D. Goldberg, S. Kleiman, D. Walsh
B. Lyon, "Design and Implementation of the
Network Filesystem," USENIX
Proceedings, USENIX Association, Berkeley, CA
Summer 1985. The basic paper describing
SunOS implementation of the NFS version 2
protocol, and discusses the goals,
specification and trade-offs
Callaghan Informational [Page 8]
RFC 2055 WebNFS Server Specification October 1996
[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
NFS version 2 protocol and
protocols, including the Lock Manager and
Portmapper
[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, RG
1AX, United Kingdom, 1991. This is
indispensable reference for NFS version 2
protocol and accompanying protocols,
the Lock Manager and the Portmapper
10. Security
Since the WebNFS server features are based on NFS protocol versions 2
and 3, the RPC security considerations described in RFC 1094,
1813, and Appendix A of RFC 1831 apply here also
Clients and servers may separately negotiate secure
schemes for authentication, data integrity, and privacy
Implementors must note carefully the implications of export
pathnames as described in section 6.3.
11.
This specification was extensively reviewed by the NFS group
SunSoft and brainstormed by Michael Eisler
Callaghan Informational [Page 9]
RFC 2055 WebNFS Server Specification October 1996
12. Author's
Address comments related to this document to
nfs@eng.sun.
Brent
Sun Microsystems, Inc
2550 Garcia
Mailstop Mpk17-201
Mountain View, CA 94043-1100
Phone: 1-415-786-5067
Fax: 1-415-786-5896
EMail: brent.callaghan@eng.sun.
Callaghan Informational [Page 10]
if you see any problems within the linking, don't worry be happy,
this is version 0.1 of the Relevance System and you gotta expect some crappy subroutines sometimes,
just be content we did not write this in Java, which would have made this "bigger and better" HAHAHHA.
RFC documents can be found at I.E.T.F.
Relevance System Copyright © 2002 Spectrum WorldResearch
other technical nosh by ServerMasters Corporation
collaboration of BobX