2 * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
3 * unrestricted use provided that this legend is included on all tape
4 * media and as a part of the software program in whole or part. Users
5 * may copy or modify Sun RPC without charge, but are not authorized
6 * to license or distribute it to anyone else except as part of a product or
7 * program developed by the user.
9 * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
10 * WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
11 * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
13 * Sun RPC is provided with no support and without any obligation on the
14 * part of Sun Microsystems, Inc. to assist in its use, correction,
15 * modification or enhancement.
17 * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
18 * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
19 * OR ANY PART THEREOF.
21 * In no event will Sun Microsystems, Inc. be liable for any lost revenue
22 * or profits or other special, indirect and consequential damages, even if
23 * Sun has been advised of the possibility of such damages.
25 * Sun Microsystems, Inc.
27 * Mountain View, California 94043
29 * @(#)mount.x 1.2 87/09/18 Copyr 1987 Sun Micro
30 * @(#)mount.x 2.1 88/08/01 4.0 RPCSRC
31 * $FreeBSD: src/include/rpcsvc/mount.x,v 1.6 1999/08/27 23:45:08 peter Exp $
35 * Protocol description for the mount program
38 const MNTPATHLEN = 1024; /* maximum bytes in a pathname argument */
39 const MNTNAMLEN = 255; /* maximum bytes in a name argument */
40 const FHSIZE = 32; /* size in bytes of a file handle */
42 const FHSIZE3 = 64; /* size in bytes of a file handle (v3) */
46 * The fhandle is the file handle that the server passes to the client.
47 * All file operations are done using the file handles to refer to a file
48 * or a directory. The file handle can contain whatever information the
49 * server needs to distinguish an individual file.
51 typedef opaque fhandle[FHSIZE];
53 typedef opaque fhandle3<FHSIZE3>;
57 * If a status of zero is returned, the call completed successfully, and
58 * a file handle for the directory follows. A non-zero status indicates
59 * some sort of error. The status corresponds with UNIX error numbers.
61 union fhstatus switch (unsigned fhs_status) {
70 * Status codes returned by the version 3 mount call.
73 MNT3_OK = 0, /* no error */
74 MNT3ERR_PERM = 1, /* Not owner */
75 MNT3ERR_NOENT = 2, /* No such file or directory */
76 MNT3ERR_IO = 5, /* I/O error */
77 MNT3ERR_ACCES = 13, /* Permission denied */
78 MNT3ERR_NOTDIR = 20, /* Not a directory */
79 MNT3ERR_INVAL = 22, /* Invalid argument */
80 MNT3ERR_NAMETOOLONG = 63, /* Filename too long */
81 MNT3ERR_NOTSUPP = 10004, /* Operation not supported */
82 MNT3ERR_SERVERFAULT = 10006 /* A failure on the server */
90 union mountres3 switch (mountstat3 fhs_status) {
92 mountres3_ok mountinfo;
99 * The type dirpath is the pathname of a directory
101 typedef string dirpath<MNTPATHLEN>;
104 * The type name is used for arbitrary names (hostnames, groupnames)
106 typedef string name<MNTNAMLEN>;
109 * A list of who has what mounted
111 typedef struct mountbody *mountlist;
114 dirpath ml_directory;
119 * A list of netgroups
121 typedef struct groupnode *groups;
128 * A list of what is exported and to whom
130 typedef struct exportnode *exports;
139 * Version one of the mount protocol communicates with version two
140 * of the NFS protocol. Version three communicates with
141 * version three of the NFS protocol. The only connecting
142 * point is the fhandle structure, which is the same for both
147 * Does no work. It is made available in all RPC services
148 * to allow server reponse testing and timing
151 MOUNTPROC_NULL(void) = 0;
154 * If fhs_status is 0, then fhs_fhandle contains the
155 * file handle for the directory. This file handle may
156 * be used in the NFS protocol. This procedure also adds
157 * a new entry to the mount list for this client mounting
159 * Unix authentication required.
162 MOUNTPROC_MNT(dirpath) = 1;
165 * Returns the list of remotely mounted filesystems. The
166 * mountlist contains one entry for each hostname and
170 MOUNTPROC_DUMP(void) = 2;
173 * Removes the mount list entry for the directory
174 * Unix authentication required.
177 MOUNTPROC_UMNT(dirpath) = 3;
180 * Removes all of the mount list entries for this client
181 * Unix authentication required.
184 MOUNTPROC_UMNTALL(void) = 4;
187 * Returns a list of all the exported filesystems, and which
188 * machines are allowed to import it.
191 MOUNTPROC_EXPORT(void) = 5;
194 * Identical to MOUNTPROC_EXPORT above
197 MOUNTPROC_EXPORTALL(void) = 6;
202 * Does no work. It is made available in all RPC services
203 * to allow server reponse testing and timing
206 MOUNTPROC_NULL(void) = 0;
209 * If mountres3.fhs_status is MNT3_OK, then
210 * mountres3.mountinfo contains the file handle for
211 * the directory and a list of acceptable
212 * authentication flavors. This file handle may only
213 * be used in the NFS version 3 protocol. This
214 * procedure also results in the server adding a new
215 * entry to its mount list recording that this client
216 * has mounted the directory. AUTH_UNIX authentication
217 * or better is required.
220 MOUNTPROC_MNT(dirpath) = 1;
223 * Returns the list of remotely mounted filesystems. The
224 * mountlist contains one entry for each hostname and
228 MOUNTPROC_DUMP(void) = 2;
231 * Removes the mount list entry for the directory
232 * Unix authentication required.
235 MOUNTPROC_UMNT(dirpath) = 3;
238 * Removes all of the mount list entries for this client
239 * Unix authentication required.
242 MOUNTPROC_UMNTALL(void) = 4;
245 * Returns a list of all the exported filesystems, and which
246 * machines are allowed to import it.
249 MOUNTPROC_EXPORT(void) = 5;